From 3873a40d9aa8e51560ac18bfbf0c18c1ff7a30dc Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Tue, 29 Mar 2022 17:17:58 +0200 Subject: Common: log timestamps and socket changes --- contrib/Socket.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'contrib/Socket.cpp') diff --git a/contrib/Socket.cpp b/contrib/Socket.cpp index d12c970..1ff6418 100644 --- a/contrib/Socket.cpp +++ b/contrib/Socket.cpp @@ -259,6 +259,15 @@ void UDPSocket::send(const std::vector& data, InetAddress destination) } } +void UDPSocket::send(const std::string& data, InetAddress destination) +{ + const int ret = sendto(m_sock, data.data(), data.size(), 0, + destination.as_sockaddr(), sizeof(*destination.as_sockaddr())); + if (ret == SOCKET_ERROR && errno != ECONNREFUSED) { + throw runtime_error(string("Can't send UDP packet: ") + strerror(errno)); + } +} + void UDPSocket::joinGroup(const char* groupname, const char* if_addr) { ip_mreqn group; -- cgit v1.2.3