Пример #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);
}
Пример #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);
}
Пример #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);
}
Пример #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);
}