diff options
Diffstat (limited to 'host')
-rw-r--r-- | host/lib/usrp/e300/e300_network.cpp | 2 |
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; |