| 138 | static uint32_t socket_id_invalid = SOCKET_ID_INVALID; |
| 139 | |
| 140 | static uint32_t AS_CreateSocketTCP(std::string& host, uint16_t port) { |
| 141 | return Engine::Instance()->GetASNetwork()->CreateSocketTCP(host, port); |
| 142 | } |
| 143 | |
| 144 | static void AS_DestroySocketTCP(uint32_t socket) { |
| 145 | return Engine::Instance()->GetASNetwork()->DestroySocketTCP(socket); |
nothing calls this directly
no test coverage detected