| 364 | } |
| 365 | |
| 366 | bool IsPortInUse(uint32_t port) { |
| 367 | auto s = SockConnect("0.0.0.0", port); |
| 368 | if (s) close(*s); |
| 369 | return s.IsOK(); |
| 370 | } |
| 371 | |
| 372 | /* Wait for milliseconds until the given file descriptor becomes |
| 373 | * writable/readable/exception */ |
no test coverage detected