| 116 | struct sockaddr_in addr; |
| 117 | SetAddr(endpoint->ip, endpoint->port, addr); |
| 118 | ret = connect(fd,(struct sockaddr*)&addr,sizeof(addr)); |
| 119 | |
| 120 | if ( errno == EALREADY || errno == EINPROGRESS ) |
| 121 | { |
nothing calls this directly
no outgoing calls
no test coverage detected