| 1230 | } |
| 1231 | |
| 1232 | int net_tcp_connect_non_blocking(NETSOCKET sock, NETADDR bindaddr) |
| 1233 | { |
| 1234 | int res = 0; |
| 1235 | |
| 1236 | net_set_non_blocking(sock); |
| 1237 | res = net_tcp_connect(sock, &bindaddr); |
| 1238 | net_set_blocking(sock); |
| 1239 | |
| 1240 | return res; |
| 1241 | } |
| 1242 | |
| 1243 | int net_tcp_send(NETSOCKET sock, const void *data, int size) |
| 1244 | { |
nothing calls this directly
no test coverage detected