| 3 | #define getPort(p1x, p2x) ((p1x * 256) + p2x) |
| 4 | |
| 5 | static int ssend(int socket, const char *str) |
| 6 | { |
| 7 | return send(socket, str, strlen(str), 0); |
| 8 | } |
| 9 | |
| 10 | static int connect_to_server_ex(const char *server_ip, u16 port, u8 rcv_timeout) |
| 11 | { |
no test coverage detected