| 1003 | } |
| 1004 | |
| 1005 | void* TDualStackSocket::RecvThreadFunc(void* that) { |
| 1006 | SetHighestThreadPriority(); |
| 1007 | static_cast<TDualStackSocket*>(that)->RecvLoop(); |
| 1008 | return nullptr; |
| 1009 | } |
| 1010 | |
| 1011 | void TDualStackSocket::RecvLoop() { |
| 1012 | for (;;) { |
nothing calls this directly
no test coverage detected