/src/sys/netinet/ |
tcp_syncache.c | 1094 u_int8_t *sigp = NULL; local in function:syn_cache_respond 1220 sigp = optp; 1250 (void)tcp_signature(m, th, hlen, sav, sigp);
|
tcp_output.c | 1404 u_int8_t *sigp; local in function:tcp_output 1413 sigp = (char *)th + sizeof(*th) + sigoff; 1414 tcp_signature(m, th, (char *)th - mtod(m, char *), sav, sigp);
|
tcp_input.c | 3092 void *sigp = NULL; local in function:tcp_dooptions 3208 if (sigp && 3209 !consttime_memequal(sigp, cp + 2, TCP_SIGLEN)) 3212 sigp = sigbuf; 3229 if ((sigp ? TF_SIGNATURE : 0) ^ (tp->t_flags & TF_SIGNATURE)) 3232 if (sigp) { 3242 if (!consttime_memequal(sig, sigp, TCP_SIGLEN)) {
|