Lines Matching defs:cookie
3946 static void tcp_parse_fastopen_option(int len, const unsigned char *cookie,
3956 memcpy(foc->val, cookie, len);
6039 struct tcp_fastopen_cookie *cookie)
6057 /* Ignore an unsolicited cookie */
6058 cookie->len = -1;
6060 /* SYN timed out and the SYN-ACK neither has a cookie nor
6065 syn_drop = (cookie->len < 0 && data);
6066 } else if (cookie->len < 0 && !tp->syn_data) {
6067 /* We requested a cookie but didn't get it. If we did not use
6074 tcp_fastopen_cache_set(sk, mss, cookie, syn_drop, try_exp);
6814 /* If a SYN cookie is required and supported, returns a clamped MSS value to be
6815 * used for SYN cookie generation.