[net] Added SetSocketNoDelay() utility function

This commit is contained in:
Thomas Snider
2017-03-22 22:02:02 -07:00
parent 02d64bd929
commit ad415bc16a
3 changed files with 12 additions and 12 deletions

View File

@@ -59,6 +59,8 @@ std::string NetworkErrorString(int err);
bool CloseSocket(SOCKET& hSocket);
/** Disable or enable blocking-mode for a socket */
bool SetSocketNonBlocking(SOCKET& hSocket, bool fNonBlocking);
/** Set the TCP_NODELAY flag on a socket */
bool SetSocketNoDelay(SOCKET& hSocket);
/**
* Convert milliseconds to a struct timeval for e.g. select.
*/