diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-11-04 14:27:50 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-11-04 14:27:50 +0100 |
commit | 51491533a312884862849082b3507e49c1829d22 (patch) | |
tree | 09afd1164350517eeacb53254b33db4249b1e41b /src/UdpSocket.cpp | |
parent | 7068a697b235f1ae05bc1a5cf93e7eeefbe7a1df (diff) | |
download | dabmux-51491533a312884862849082b3507e49c1829d22.tar.gz dabmux-51491533a312884862849082b3507e49c1829d22.tar.bz2 dabmux-51491533a312884862849082b3507e49c1829d22.zip |
Add new UDP input
Diffstat (limited to 'src/UdpSocket.cpp')
-rw-r--r-- | src/UdpSocket.cpp | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/src/UdpSocket.cpp b/src/UdpSocket.cpp index 020e3f5..ccdd7ed 100644 --- a/src/UdpSocket.cpp +++ b/src/UdpSocket.cpp @@ -37,19 +37,19 @@ using namespace std; UdpSocket::UdpSocket() : listenSocket(INVALID_SOCKET) { - init_sock(0, ""); + reinit(0, ""); } UdpSocket::UdpSocket(int port) : listenSocket(INVALID_SOCKET) { - init_sock(port, ""); + reinit(port, ""); } UdpSocket::UdpSocket(int port, const std::string& name) : listenSocket(INVALID_SOCKET) { - init_sock(port, name); + reinit(port, name); } @@ -67,7 +67,7 @@ int UdpSocket::setBlocking(bool block) return 0; } -int UdpSocket::init_sock(int port, const std::string& name) +int UdpSocket::reinit(int port, const std::string& name) { if (listenSocket != INVALID_SOCKET) { ::close(listenSocket); @@ -98,6 +98,16 @@ int UdpSocket::init_sock(int port, const std::string& name) return 0; } +int UdpSocket::close() +{ + if (listenSocket != INVALID_SOCKET) { + ::close(listenSocket); + } + + listenSocket = INVALID_SOCKET; + + return 0; +} UdpSocket::~UdpSocket() { |