1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Implement reading unknown lengths of data from socket.

This commit is contained in:
Bartosz Taudul
2020-09-10 21:39:58 +02:00
parent 72ce3ccf15
commit e2d69e7981
2 changed files with 19 additions and 0 deletions
+1
View File
@@ -30,6 +30,7 @@ public:
int Send( const void* buf, int len );
int GetSendBufSize();
int ReadUpTo( void* buf, int len, int timeout );
bool Read( void* buf, int len, int timeout );
template<typename ShouldExit>