-
Notifications
You must be signed in to change notification settings - Fork 3
/
UDPSvrSocket.cpp
89 lines (76 loc) · 2.13 KB
/
UDPSvrSocket.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
/******************************************************************************
** (C) Chris Oldwood
**
** MODULE: UDPSVRSOCKET.CPP
** COMPONENT: Network & Comms Library
** DESCRIPTION: CUDPSvrSocket class definition.
**
*******************************************************************************
*/
#include "Common.hpp"
#include "UDPSvrSocket.hpp"
#include "SocketException.hpp"
#include "WinSock.hpp"
#include <limits.h>
#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.
**
*******************************************************************************
*/
CUDPSvrSocket::CUDPSvrSocket(Mode eMode)
: CUDPSocket(eMode)
{
}
/******************************************************************************
** Method: Destructor.
**
** Description: .
**
** Parameters: None.
**
** Returns: Nothing.
**
*******************************************************************************
*/
CUDPSvrSocket::~CUDPSvrSocket()
{
}
/******************************************************************************
** Method: Listen()
**
** Description: Open the socket for listening on the given port.
**
** Parameters: nPort The port number.
**
** Returns: Nothing.
**
** Exceptions: CSocketException.
**
*******************************************************************************
*/
void CUDPSvrSocket::Listen(uint nPort)
{
ASSERT(m_hSocket == INVALID_SOCKET);
ASSERT(nPort <= USHRT_MAX);
// Save parameters.
m_nPort = nPort;
sockaddr_in addr = { 0 };
addr.sin_family = AF_INET;
addr.sin_addr.s_addr = htonl(INADDR_ANY);
addr.sin_port = htons(static_cast<u_short>(nPort));
// Create the socket.
Create(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
// Bind socket to port.
if (bind(m_hSocket, reinterpret_cast<sockaddr*>(&addr), sizeof(addr)) == SOCKET_ERROR)
throw CSocketException(CSocketException::E_BIND_FAILED, CWinSock::LastError());
}