summaryrefslogtreecommitdiff
path: root/ham/uhd/patches/patch-host_lib_transport_udp_simple.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ham/uhd/patches/patch-host_lib_transport_udp_simple.cpp')
-rw-r--r--ham/uhd/patches/patch-host_lib_transport_udp_simple.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/ham/uhd/patches/patch-host_lib_transport_udp_simple.cpp b/ham/uhd/patches/patch-host_lib_transport_udp_simple.cpp
deleted file mode 100644
index f36c47390f7..00000000000
--- a/ham/uhd/patches/patch-host_lib_transport_udp_simple.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-host_lib_transport_udp_simple.cpp,v 1.1 2018/03/09 11:36:40 mef Exp $
-
-PR pkg/52969
-with the boost libs updated to 2.6 there are changes so that socket->native()
-is no longer supported. use socket->native_handle() instead
-
---- lib/transport/udp_simple.cpp.orig
-+++ lib/transport/udp_simple.cpp
-@@ -56,7 +56,7 @@
- }
-
- size_t recv(const asio::mutable_buffer &buff, double timeout){
-- if (not wait_for_recv_ready(_socket->native(), timeout)) return 0;
-+ if (not wait_for_recv_ready(_socket->native_handle(), timeout)) return 0;
- return _socket->receive_from(asio::buffer(buff), _recv_endpoint);
- }