Lines Matching defs:cookies
235 * cookies are both set after copying if the responder is non-zero.
344 * This extends the NAT matching to be based on the cookies associated with
345 * a session and found at the front of IKE packets. The cookies are always
353 u_32_t cookies[4];
359 if ((fin->fin_dlen < sizeof(cookies)) || (fin->fin_flx & FI_FRAG))
365 COPYDATA(m, off, sizeof(cookies), (char *)cookies);
367 if ((cookies[0] != ipsec->ipsc_icookie[0]) ||
368 (cookies[1] != ipsec->ipsc_icookie[1]))
372 if ((cookies[2]|cookies[3]) == 0) {
376 ipsec->ipsc_rcookie[0] = cookies[2];
377 ipsec->ipsc_rcookie[1] = cookies[3];
381 if ((cookies[2] != ipsec->ipsc_rcookie[0]) ||
382 (cookies[3] != ipsec->ipsc_rcookie[1]))