aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/e300
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2017-12-19 09:18:04 -0800
committerMartin Braun <martin.braun@ettus.com>2017-12-19 09:18:04 -0800
commitf249f1922a7484d870680db4a2faf2129e99b267 (patch)
treee08929861f3034bd7496b4c1aaec325694fd92df /host/lib/usrp/e300
parent707db05b5a4a2453c63b24f92d357d63d7962b11 (diff)
downloaduhd-f249f1922a7484d870680db4a2faf2129e99b267.tar.gz
uhd-f249f1922a7484d870680db4a2faf2129e99b267.tar.bz2
uhd-f249f1922a7484d870680db4a2faf2129e99b267.zip
e300: Fix use of basic_datagram_socket::native()
Diffstat (limited to 'host/lib/usrp/e300')
-rw-r--r--host/lib/usrp/e300/e300_network.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/e300/e300_network.cpp b/host/lib/usrp/e300/e300_network.cpp
index f3045eb2d..fb085cdfc 100644
--- a/host/lib/usrp/e300/e300_network.cpp
+++ b/host/lib/usrp/e300/e300_network.cpp
@@ -133,7 +133,7 @@ static void e300_send_tunnel(
if (not buff) continue;
//step 2 - recv from socket
- while (not wait_for_recv_ready(recver->native(), 100) and *running){}
+ while (not wait_for_recv_ready(recver->native_handle(), 100) and *running){}
if (not *running) break;
const size_t num_bytes = recver->receive_from(asio::buffer(buff->cast<void *>(), buff->size()), _rx_endpoint);
if (E300_NETWORK_DEBUG) UHD_LOGGER_INFO("E300") << name << " got " << num_bytes;