Lines Matching defs:cookie_len
522 uint8_t cookie_len = 0;
524 uint16_t cookie_len = 0;
530 handshake->cookie_len);
531 cookie_len = handshake->cookie_len;
534 MBEDTLS_SSL_CHK_BUF_PTR(p, end, cookie_len + 1);
535 *p++ = (unsigned char) cookie_len;
536 if (cookie_len > 0) {
537 memcpy(p, handshake->cookie, cookie_len);
538 p += cookie_len;