diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2016-05-30 14:05:38 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2016-05-30 14:05:38 -0700 |
commit | c5f7b07aff9320e3d13bb8d26aa4dc43093e569a (patch) | |
tree | 25720b562fa01915560ad736e1b2a51a819cd514 /gr-blocks/lib/udp_source_impl.cc | |
parent | 45d19af2509272020298499aec37c3af42cb71d5 (diff) | |
parent | 0d32337545f554dffe0dee69f5f1415ac2f5b673 (diff) |
Merge branch 'master' into next
Diffstat (limited to 'gr-blocks/lib/udp_source_impl.cc')
-rw-r--r-- | gr-blocks/lib/udp_source_impl.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gr-blocks/lib/udp_source_impl.cc b/gr-blocks/lib/udp_source_impl.cc index d1d3b45827..ea2f2b60a0 100644 --- a/gr-blocks/lib/udp_source_impl.cc +++ b/gr-blocks/lib/udp_source_impl.cc @@ -95,9 +95,6 @@ namespace gr { d_socket = new boost::asio::ip::udp::socket(d_io_service); d_socket->open(d_endpoint.protocol()); - boost::asio::socket_base::linger loption(true, 0); - d_socket->set_option(loption); - boost::asio::socket_base::reuse_address roption(true); d_socket->set_option(roption); |