Searched refs:cookiepkt (Results 1 – 2 of 2) sorted by relevance
/third_party/openssl/ssl/ |
D | d1_lib.c | 451 PACKET pkt, msgpkt, msgpayload, session, cookiepkt; in DTLSv1_listen() local 642 || !PACKET_get_length_prefixed_1(&msgpayload, &cookiepkt)) { in DTLSv1_listen() 655 if (PACKET_remaining(&cookiepkt) == 0) { in DTLSv1_listen() 666 if (s->ctx->app_verify_cookie_cb(s, PACKET_data(&cookiepkt), in DTLSv1_listen() 667 (unsigned int)PACKET_remaining(&cookiepkt)) == 0) { in DTLSv1_listen()
|
/third_party/openssl/ssl/statem/ |
D | statem_clnt.c | 1281 PACKET cookiepkt; in dtls_process_hello_verify() local 1284 || !PACKET_get_length_prefixed_1(pkt, &cookiepkt)) { in dtls_process_hello_verify() 1289 cookie_len = PACKET_remaining(&cookiepkt); in dtls_process_hello_verify() 1295 if (!PACKET_copy_bytes(&cookiepkt, s->d1->cookie, cookie_len)) { in dtls_process_hello_verify()
|