| 65 | int TCPConnect(char *addr, int port, int nonblock) { |
| 66 | int s, retval = -1; |
| 67 | struct addrinfo hints, *servinfo, *p; |
| 68 | |
| 69 | char portstr[6]; /* Max 16 bit number string length. */ |
| 70 | snprintf(portstr,sizeof(portstr),"%d",port); |
nothing calls this directly
no outgoing calls
no test coverage detected