mirror of
https://github.com/fairwaves/UHD-Fairwaves.git
synced 2025-11-02 13:03:13 +00:00
umtrx_monitor.cpp: Fix compilation against newer boost
Related: github issue #22
This commit is contained in:
@@ -118,7 +118,7 @@ void umtrx_impl::status_monitor_handler(void)
|
||||
void umtrx_impl::server_query_handler(void)
|
||||
{
|
||||
//accept the client socket (timeout is 100 ms, task is called again)
|
||||
if (not wait_read_sockfd(_server_query_tcp_acceptor->native(), 100)) return;
|
||||
if (not wait_read_sockfd(_server_query_tcp_acceptor->native_handle(), 100)) return;
|
||||
boost::shared_ptr<asio::ip::tcp::socket> socket(new asio::ip::tcp::socket(_server_query_io_service));
|
||||
_server_query_tcp_acceptor->accept(*socket);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user