| 142 | } |
| 143 | |
| 144 | static void AS_DestroySocketTCP(uint32_t socket) { |
| 145 | return Engine::Instance()->GetASNetwork()->DestroySocketTCP(socket); |
| 146 | } |
| 147 | |
| 148 | static int AS_SocketTCPSend(uint32_t socket, const CScriptArray& array) { |
| 149 | uint8_t* datc = (uint8_t*)alloc.stack.Alloc(array.GetSize()); |
nothing calls this directly
no test coverage detected