| 429 | } |
| 430 | |
| 431 | void SetSocketPriority(SOCKET s, int priority) { |
| 432 | #if defined(SO_PRIORITY) |
| 433 | CheckedSetSockOpt(s, SOL_SOCKET, SO_PRIORITY, priority, "priority"); |
| 434 | #else |
| 435 | Y_UNUSED(s); |
| 436 | Y_UNUSED(priority); |
| 437 | #endif |
| 438 | } |
| 439 | |
| 440 | bool HasLocalAddress(SOCKET socket) { |
| 441 | TOpaqueAddr localAddr; |
nothing calls this directly
no test coverage detected