X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=src%2Fsocket_client.hxx;h=1d8240005010700b4752a4f1a231a194edc80a54;hp=a35bbfdbf938e6b175ccb780024d44e4a888cb3b;hb=45a2ebc9695c4d7be6548b7e0f800d117ae56a0b;hpb=04d86ba4ad4f14ab08f38804e772ec46a8ac92b0 diff --git a/src/socket_client.hxx b/src/socket_client.hxx index a35bbfd..1d82400 100644 --- a/src/socket_client.hxx +++ b/src/socket_client.hxx @@ -54,13 +54,15 @@ class socket_client_connection : public client_connection, public socket_handler /** @brief read data from the socket and copy it into buffer @param usec_timeout wait until new data is found, max timeout usecs. - -1: wait endless - NULL: no timeout + -1: wait endless + 0: return instantly + @param usec_timeout_remaining if non-NULL the function will write the + not used time to the given target @retval true if new data was found (does not mean that the received data is a complete packet though) */ - bool fill_buffer(long long usec_timeout=-1) - { return socket_handler::fill_buffer(buffer,usec_timeout); } + bool fill_buffer(long long usec_timeout=-1, long long *usec_timeout_remaining=NULL) + { return socket_handler::fill_buffer(buffer,usec_timeout,usec_timeout_remaining); } void close(); };