Searched refs:client_s (Results 1 – 1 of 1) sorted by relevance
/external/libmicrohttpd/src/platform/ |
D | w32functions.c | 585 SOCKET client_s = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); in MHD_W32_pair_of_sockets_() local 586 if (INVALID_SOCKET != client_s) in MHD_W32_pair_of_sockets_() 588 if (0 == ioctlsocket(client_s, FIONBIO, (u_long*) &opt) in MHD_W32_pair_of_sockets_() 589 && (0 == connect(client_s, (struct sockaddr*) &listen_addr, c_addinlen) in MHD_W32_pair_of_sockets_() 601 if (0 == getsockname(client_s, (struct sockaddr*) &client_addr, &addr_len) in MHD_W32_pair_of_sockets_() 605 && 0 == ioctlsocket(client_s, FIONBIO, (u_long*) &opt) in MHD_W32_pair_of_sockets_() 609 sockets_pair[0] = client_s; in MHD_W32_pair_of_sockets_() 616 closesocket(client_s); in MHD_W32_pair_of_sockets_()
|