-
Notifications
You must be signed in to change notification settings - Fork 3
/
TCPSocket.cpp
103 lines (89 loc) · 2.39 KB
/
TCPSocket.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/******************************************************************************
** (C) Chris Oldwood
**
** MODULE: TCPSOCKET.CPP
** COMPONENT: Network & Comms Library
** DESCRIPTION: CTCPSocket class definition.
**
*******************************************************************************
*/
#include "Common.hpp"
#include "TCPSocket.hpp"
#include "SocketException.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.
**
*******************************************************************************
*/
CTCPSocket::CTCPSocket(Mode eMode)
: CSocket(eMode)
{
}
/******************************************************************************
** Method: Destructor.
**
** Description: .
**
** Parameters: None.
**
** Returns: Nothing.
**
*******************************************************************************
*/
CTCPSocket::~CTCPSocket()
{
}
/******************************************************************************
** Methods: Type() & Protocol()
**
** Description: Template methods to get the socket type and protocol.
**
** Parameters: None.
**
** Returns: SOCK_* & IPPROTO_*.
**
*******************************************************************************
*/
int CTCPSocket::Type() const
{
return SOCK_STREAM;
}
int CTCPSocket::Protocol() const
{
return IPPROTO_TCP;
}
/******************************************************************************
** Method: PeerAddress()
**
** Description: Gets the IP address of the peer.
**
** Parameters: None.
**
** Returns: The address in numeric form.
**
** Exceptions: CSocketException.
**
*******************************************************************************
*/
CString CTCPSocket::PeerAddress() const
{
ASSERT(m_hSocket != INVALID_SOCKET);
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)
throw CSocketException(CSocketException::E_QUERY_FAILED, CWinSock::LastError());
return A2T(inet_ntoa(addr.sin_addr));
}