| 727 | } |
| 728 | |
| 729 | bool SetSocketNoDelay(const SOCKET& hSocket) |
| 730 | { |
| 731 | int set = 1; |
| 732 | int rc = setsockopt(hSocket, IPPROTO_TCP, TCP_NODELAY, (const char*)&set, sizeof(int)); |
| 733 | return rc == 0; |
| 734 | } |
| 735 | |
| 736 | void InterruptSocks5(bool interrupt) |
| 737 | { |
no outgoing calls
no test coverage detected