-
Notifications
You must be signed in to change notification settings - Fork 3
/
TCPCltSocket.cpp
88 lines (76 loc) · 2.06 KB
/
TCPCltSocket.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/******************************************************************************
** (C) Chris Oldwood
**
** MODULE: TCPCLTSOCKET.CPP
** COMPONENT: Network & Comms Library
** DESCRIPTION: CTCPCltSocket class definition.
**
*******************************************************************************
*/
#include "Common.hpp"
#include "TCPCltSocket.hpp"
#include "WinSock.hpp"
#include <Core/AnsiWide.hpp>
#if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 2)) // GCC 4.2+
// missing initializer for member 'X'
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
/******************************************************************************
** Method: Constructor.
**
** Description: .
**
** Parameters: None.
**
** Returns: Nothing.
**
*******************************************************************************
*/
CTCPCltSocket::CTCPCltSocket(Mode eMode)
: CTCPSocket(eMode)
{
}
/******************************************************************************
** Method: Destructor.
**
** Description: .
**
** Parameters: None.
**
** Returns: Nothing.
**
*******************************************************************************
*/
CTCPCltSocket::~CTCPCltSocket()
{
}
/******************************************************************************
** Method: Constructor.
**
** Description: .
**
** Parameters: None.
**
** Returns: Nothing.
**
*******************************************************************************
*/
void CTCPCltSocket::Attach(SOCKET hSocket, Mode eMode)
{
ASSERT(hSocket != INVALID_SOCKET);
ASSERT(m_hSocket == INVALID_SOCKET);
ASSERT(m_eMode == eMode);
m_hSocket = hSocket;
m_eMode = eMode;
sockaddr_in addr = { 0 };;
int nAddrSize = sizeof(addr);
// Get the peer host address and port number.
if (getpeername(m_hSocket, reinterpret_cast<sockaddr*>(&addr), &nAddrSize) != SOCKET_ERROR)
{
m_strHost = A2T(inet_ntoa(addr.sin_addr));
m_nPort = addr.sin_port;
}
// If async mode, do select.
if (m_eMode == ASYNC)
CWinSock::BeginAsyncSelect(this, (FD_READ | FD_WRITE | FD_CLOSE));
}