Searched refs:m_HintsAddrInfo (Results 1 – 2 of 2) sorted by relevance
108 ZeroMemory(&m_HintsAddrInfo, sizeof(m_HintsAddrInfo)); in Connect()110 m_HintsAddrInfo.ai_family = AF_INET; in Connect()112 m_HintsAddrInfo.ai_socktype = SOCK_STREAM; in Connect()114 m_HintsAddrInfo.ai_protocol = IPPROTO_TCP; in Connect()117 …int iResult = getaddrinfo(strServer.c_str(), strPort.c_str(), &m_HintsAddrInfo, &m_pResultAddrInfo… in Connect()218 memset(&m_HintsAddrInfo, 0, sizeof m_HintsAddrInfo); in Connect()219 m_HintsAddrInfo.ai_family = AF_INET; // AF_INET or AF_INET6 to force version or use AF_UNSPEC in Connect()220 m_HintsAddrInfo.ai_socktype = SOCK_STREAM; in Connect()224 …int iAddrInfoRet = getaddrinfo(strServer.c_str(), strPort.c_str(), &m_HintsAddrInfo, &m_pResultAdd… in Connect()
84 struct addrinfo m_HintsAddrInfo; variable