Home
last modified time | relevance | path

Searched refs:client_s (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/third_party/externals/microhttpd/src/platform/
Dw32functions.c585 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_()
/third_party/openssl/test/
Dssl_old_test.c144 const unsigned char *client_s; in verify_npn() local
149 SSL_get0_next_proto_negotiated(client, &client_s, &client_len); in verify_npn()
154 BIO_write(bio_stdout, client_s, client_len); in verify_npn()
169 memcmp(client_s, NEXT_PROTO_STRING + 1, client_len))) in verify_npn()