| 1329 | } |
| 1330 | |
| 1331 | int net_tcp_connect_non_blocking(NETSOCKET sock, NETADDR bindaddr) |
| 1332 | { |
| 1333 | net_set_non_blocking(sock); |
| 1334 | int res = net_tcp_connect(sock, &bindaddr); |
| 1335 | net_set_blocking(sock); |
| 1336 | return res; |
| 1337 | } |
| 1338 | |
| 1339 | int net_tcp_send(NETSOCKET sock, const void *data, int size) |
| 1340 | { |
nothing calls this directly
no test coverage detected