| 154 | } |
| 155 | |
| 156 | void init(sockaddr_in* address, jint host, jint port) |
| 157 | { |
| 158 | memset(address, 0, sizeof(sockaddr_in)); |
| 159 | address->sin_family = AF_INET; |
| 160 | address->sin_port = htons(port); |
| 161 | address->sin_addr.s_addr = htonl(host); |
| 162 | } |
| 163 | |
| 164 | inline bool einProgress(int error) |
| 165 | { |
no outgoing calls
no test coverage detected