Update Csocket to 0119a006bdfb6223a1a86d48b02efee87d11b721

This commit is contained in:
Edoardo Spadolini
2015-01-02 23:36:36 +01:00
parent 56f0d3bcbf
commit cac9da4951
2 changed files with 14 additions and 2 deletions
+3
View File
@@ -859,6 +859,8 @@ public:
void DisableSSLProtocols( u_int uDisableOpts ) { m_uDisableProtocols = uDisableOpts; }
//! allow disabling compression
void DisableSSLCompression() { m_bNoSSLCompression = true; }
//! select the ciphers in server-preferred order
void FollowSSLCipherServerPreference() { m_bSSLCipherServerPreference = true; }
//! Set the cipher type ( openssl cipher [to see ciphers available] )
void SetCipher( const CS_STRING & sCipher );
const CS_STRING & GetCipher() const;
@@ -1186,6 +1188,7 @@ private:
uint32_t m_iRequireClientCertFlags;
u_int m_uDisableProtocols;
bool m_bNoSSLCompression;
bool m_bSSLCipherServerPreference;
FPCertVerifyCB m_pCerVerifyCB;