| 470 | } |
| 471 | |
| 472 | static int MakeSendTCP(ClientEntry *client, uint8 *data, uint32 len) throw() |
| 473 | { |
| 474 | if(send(client->TCPSocket, data, len, MSG_NOSIGNAL) != len) |
| 475 | throw(1); |
| 476 | |
| 477 | return(1); |
| 478 | } |
| 479 | |
| 480 | static void SendToAll(GameEntry *game, int cmd, uint8 *data, uint32 len) throw() |
| 481 | { |
no outgoing calls
no test coverage detected