-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUDPSocket.cpp
More file actions
121 lines (100 loc) · 3.24 KB
/
UDPSocket.cpp
File metadata and controls
121 lines (100 loc) · 3.24 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
//
// Copyright © 2020 Thomas A. Early, N7TAE
//
// ----------------------------------------------------------------------------
//
// xlxd is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// xlxd is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Foobar. If not, see <http://www.gnu.org/licenses/>.
// ----------------------------------------------------------------------------
#include <string.h>
#include <sys/types.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <arpa/inet.h>
#include "UDPSocket.h"
////////////////////////////////////////////////////////////////////////////////////////
// constructor
CUDPSocket::CUDPSocket() : m_fd(-1) {}
////////////////////////////////////////////////////////////////////////////////////////
// destructor
CUDPSocket::~CUDPSocket()
{
Close();
}
////////////////////////////////////////////////////////////////////////////////////////
// open & close
bool CUDPSocket::Open(const CSockAddress &addr)
{
// create socket
m_fd = socket(addr.GetFamily(), SOCK_DGRAM, 0);
if (0 > m_fd)
{
std::cerr << "Cannot create socket on " << addr << ", " << strerror(errno) << std::endl;
return true;
}
if (0 > fcntl(m_fd, F_SETFL, O_NONBLOCK))
{
std::cerr << "cannot set socket " << addr << " to non-blocking: " << strerror(errno) << std::endl;
close(m_fd);
m_fd = -1;
return true;
}
const int reuse = 1;
if (0 > setsockopt(m_fd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(int)))
{
std::cerr << "Cannot set the UDP socket option on " << m_addr << ", err: " << strerror(errno) << std::endl;
close(m_fd);
m_fd = -1;
return true;
}
// initialize sockaddr struct
m_addr = addr;
if (0 != bind(m_fd, m_addr.GetCPointer(), m_addr.GetSize()))
{
std::cerr << "bind failed on " << m_addr << ", " << strerror(errno) << std::endl;
close(m_fd);
m_fd = -1;
return true;
}
return false;
}
void CUDPSocket::Close(void)
{
if ( m_fd >= 0 )
{
close(m_fd);
m_fd = -1;
}
}
////////////////////////////////////////////////////////////////////////////////////////
// read
size_t CUDPSocket::Read(unsigned char *buf, const size_t size, CSockAddress &Ip)
{
if ( 0 > m_fd )
return 0;
unsigned int len = sizeof(struct sockaddr_storage);
auto rval = recvfrom(m_fd, buf, size, 0, Ip.GetPointer(), &len);
if (0 > rval)
std::cerr << "Read error on port " << m_addr << ": " << strerror(errno) << std::endl;
return rval;
}
void CUDPSocket::Write(const void *Buffer, const size_t size, const CSockAddress &Ip) const
{
auto rval = sendto(m_fd, Buffer, size, 0, Ip.GetCPointer(), Ip.GetSize());
if (0 > rval)
std::cerr << "Write error to " << Ip << ", " << strerror(errno) << std::endl;
else if ((size_t)rval != size)
std::cerr << "Short write, " << rval << "<" << size << " to " << Ip << std::endl;
}