openSSLHandshake -> openSSLClientHandshake
This commit is contained in:
		@@ -205,7 +205,7 @@ namespace ix
 | 
				
			|||||||
        return true;
 | 
					        return true;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    bool SocketOpenSSL::openSSLHandshake(const std::string& host, std::string& errMsg)
 | 
					    bool SocketOpenSSL::openSSLClientHandshake(const std::string& host, std::string& errMsg)
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        while (true)
 | 
					        while (true)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
@@ -375,7 +375,7 @@ namespace ix
 | 
				
			|||||||
            X509_VERIFY_PARAM* param = SSL_get0_param(_ssl_connection);
 | 
					            X509_VERIFY_PARAM* param = SSL_get0_param(_ssl_connection);
 | 
				
			||||||
            X509_VERIFY_PARAM_set1_host(param, host.c_str(), 0);
 | 
					            X509_VERIFY_PARAM_set1_host(param, host.c_str(), 0);
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
            handshakeSuccessful = openSSLHandshake(host, errMsg);
 | 
					            handshakeSuccessful = openSSLClientHandshake(host, errMsg);
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if (!handshakeSuccessful)
 | 
					        if (!handshakeSuccessful)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -38,7 +38,7 @@ namespace ix
 | 
				
			|||||||
        void openSSLInitialize();
 | 
					        void openSSLInitialize();
 | 
				
			||||||
        std::string getSSLError(int ret);
 | 
					        std::string getSSLError(int ret);
 | 
				
			||||||
        SSL_CTX* openSSLCreateContext(std::string& errMsg);
 | 
					        SSL_CTX* openSSLCreateContext(std::string& errMsg);
 | 
				
			||||||
        bool openSSLHandshake(const std::string& hostname, std::string& errMsg);
 | 
					        bool openSSLClientHandshake(const std::string& hostname, std::string& errMsg);
 | 
				
			||||||
        bool openSSLCheckServerCert(SSL* ssl, const std::string& hostname, std::string& errMsg);
 | 
					        bool openSSLCheckServerCert(SSL* ssl, const std::string& hostname, std::string& errMsg);
 | 
				
			||||||
        bool checkHost(const std::string& host, const char* pattern);
 | 
					        bool checkHost(const std::string& host, const char* pattern);
 | 
				
			||||||
        bool handleTLSOptions(std::string& errMsg);
 | 
					        bool handleTLSOptions(std::string& errMsg);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user