// deadlake PROXYSUPPORT // By Maverick: Connection initialisition is done by class itself //BOOL CEMSocket::Connect(LPCTSTR lpszHostAddress, UINT nHostPort) BOOL CEMSocket::Connect(SOCKADDR* pSockAddr, int iSockAddrLen) { InitProxySupport(); return CEncryptedStreamSocket::Connect(pSockAddr, iSockAddrLen); }
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Connection initialization is done by class itself BOOL CEMSocket::Connect(LPCSTR lpszHostAddress, UINT nHostPort) { InitProxySupport(); m_eConnectionState = ES_CONNECTING; return CEncryptedStreamSocket::Connect(lpszHostAddress, nHostPort); }
// deadlake PROXYSUPPORT // By Maverick: Connection initialisition is done by class itself BOOL CEMSocket::Connect(LPCSTR lpszHostAddress, UINT nHostPort) { InitProxySupport(); return CEncryptedStreamSocket::Connect(lpszHostAddress, nHostPort); }
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Connection initialization is done by class itself BOOL CEMSocket::Connect(SOCKADDR *pSockAddr, int iSockAddrLen) { InitProxySupport(); m_eConnectionState = ES_CONNECTING; return CEncryptedStreamSocket::Connect(pSockAddr, iSockAddrLen); }