| 739 | } |
| 740 | |
| 741 | bool SetSocketNoDelay(const SOCKET& hSocket) |
| 742 | { |
| 743 | int set = 1; |
| 744 | int rc = setsockopt(hSocket, IPPROTO_TCP, TCP_NODELAY, (const char*)&set, sizeof(int)); |
| 745 | return rc == 0; |
| 746 | } |
| 747 | |
| 748 | void InterruptSocks5(bool interrupt) |
| 749 | { |
no outgoing calls
no test coverage detected