ssl_get_version.pod
来自「mediastreamer2是开源的网络传输媒体流的库」· POD 代码 · 共 47 行
POD
47 行
=pod=head1 NAMESSL_get_version - get the protocol version of a connection.=head1 SYNOPSIS #include <openssl/ssl.h> const char *SSL_get_version(const SSL *ssl);=head1 DESCRIPTIONSSL_get_cipher_version() returns the name of the protocol used for theconnection B<ssl>.=head1 RETURN VALUESThe following strings can occur:=over 4=item SSLv2The connection uses the SSLv2 protocol.=item SSLv3The connection uses the SSLv3 protocol.=item TLSv1The connection uses the TLSv1 protocol.=item unknownThis indicates that no version has been set (no connection established).=back=head1 SEE ALSOL<ssl(3)|ssl(3)>=cut
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?