| 15 | } |
| 16 | |
| 17 | void InitializeConnections(){ |
| 18 | if(!mainAdapter) { |
| 19 | Log::Info("No network adapter found!"); |
| 20 | return; |
| 21 | } |
| 22 | |
| 23 | Interface::Initialize(); |
| 24 | } |
| 25 | |
| 26 | unsigned short AllocatePort(Socket& sock){ |
| 27 | unsigned short port = EPHEMERAL_PORT_RANGE_START; |
nothing calls this directly
no test coverage detected