| 813 | } |
| 814 | |
| 815 | SSL_SESSION * CUT_WSClient::SSLGetCurrentSession() { |
| 816 | if (m_ssl) |
| 817 | return SSL_get_session(m_ssl); |
| 818 | else |
| 819 | return NULL; |
| 820 | } |
| 821 | |
| 822 | int CUT_WSClient::SSLSetReuseSession(SSL_SESSION * reuseSession) { |
| 823 | m_reuseSession = reuseSession; |
nothing calls this directly
no outgoing calls
no test coverage detected