Definition at line 139 of file ssl.cpp.
Public Member Functions | |
s_ssl_receive_later () | |
Public Attributes | |
bool | cert_verified |
Was certificate verified yet? true==YES, false==verification pending. | |
list< s_ssl_data > | data |
Array of data packets. | |
string | expected_client_cert |
Path to expected client's certificate. | |
bool | has_error |
Set to true, if we have data, but there's an error on the socket, or socket has been closed (by remote host). | |
s_socket | s |
Socket descriptor of connection. | |
SSL * | ssl |
Socket handle. |
|
Definition at line 147 of file ssl.cpp. References cert_verified, data, expected_client_cert, has_error, and ssl. 00148 { 00149 has_error=false; 00150 ssl=NULL; 00151 data.clear(); 00152 cert_verified=false; 00153 expected_client_cert=""; 00154 }
|
|
Was certificate verified yet? true==YES, false==verification pending.
Definition at line 144 of file ssl.cpp. Referenced by s_ssl_receive_later(), ssl_client_connection(), and ssl_server_connection(). |
|
Array of data packets.
Definition at line 142 of file ssl.cpp. Referenced by s_ssl_receive_later(), ssl_client_connection(), and ssl_server_connection(). |
|
Path to expected client's certificate.
Definition at line 145 of file ssl.cpp. Referenced by s_ssl_receive_later(), ssl_client_connection(), and ssl_server_connection(). |
|
Set to true, if we have data, but there's an error on the socket, or socket has been closed (by remote host).
Definition at line 140 of file ssl.cpp. Referenced by s_ssl_receive_later(), ssl_client_connection(), and ssl_server_connection(). |
|
Socket descriptor of connection.
Definition at line 143 of file ssl.cpp. Referenced by ssl_client_connection(), and ssl_server_connection(). |
|
Socket handle.
Definition at line 141 of file ssl.cpp. Referenced by s_ssl_receive_later(), ssl_client_connection(), and ssl_server_connection(). |