Esempio n. 1
0
// 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);
}
Esempio n. 2
0
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//	Connection initialization is done by class itself
BOOL CEMSocket::Connect(LPCSTR lpszHostAddress, UINT nHostPort)
{
	InitProxySupport();
	m_eConnectionState = ES_CONNECTING;
	return CEncryptedStreamSocket::Connect(lpszHostAddress, nHostPort);
}
Esempio n. 3
0
// deadlake PROXYSUPPORT
// By Maverick: Connection initialisition is done by class itself
BOOL CEMSocket::Connect(LPCSTR lpszHostAddress, UINT nHostPort)
{
    InitProxySupport();
    return CEncryptedStreamSocket::Connect(lpszHostAddress, nHostPort);
}
Esempio n. 4
0
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//	Connection initialization is done by class itself
BOOL CEMSocket::Connect(SOCKADDR *pSockAddr, int iSockAddrLen)
{
	InitProxySupport();
	m_eConnectionState = ES_CONNECTING;
	return CEncryptedStreamSocket::Connect(pSockAddr, iSockAddrLen);
}