Searched refs:tcpopt (Results 1 – 4 of 4) sorted by relevance
507 tcp_opt_t tcpopt; in tcp_time_wait_processing() local524 tcpopt.tcp = tcp; in tcp_time_wait_processing()526 tcpopt.tcp = NULL; in tcp_time_wait_processing()527 options = tcp_parse_options(tcpha, &tcpopt); in tcp_time_wait_processing()531 } else if (!tcp_paws_check(tcp, &tcpopt)) { in tcp_time_wait_processing()684 TSTMP_GEQ(tcpopt.tcp_opt_ts_val, tcp->tcp_ts_recent) && in tcp_time_wait_processing()686 tcp->tcp_ts_recent = tcpopt.tcp_opt_ts_val; in tcp_time_wait_processing()
231 tcp_parse_options(tcpha_t *tcpha, tcp_opt_t *tcpopt) in tcp_parse_options() argument252 tcpopt->tcp_opt_ts_val = ABE32_TO_U32((up+4)); in tcp_parse_options()253 tcpopt->tcp_opt_ts_ecr = ABE32_TO_U32((up+8)); in tcp_parse_options()274 tcpopt->tcp_opt_mss = mss; in tcp_parse_options()285 tcpopt->tcp_opt_wscale = TCP_MAX_WINSHIFT; in tcp_parse_options()287 tcpopt->tcp_opt_wscale = up[2]; in tcp_parse_options()306 if ((tcp = tcpopt->tcp) == NULL) { in tcp_parse_options()373 tcpopt->tcp_opt_ts_val = BE32_TO_U32(up+2); in tcp_parse_options()374 tcpopt->tcp_opt_ts_ecr = BE32_TO_U32(up+6); in tcp_parse_options()407 tcp_opt_t tcpopt; in tcp_process_options() local[all …]
2021 tcp_parse_options(tcph_t *tcph, tcp_opt_t *tcpopt) in tcp_parse_options() argument2051 tcpopt->tcp_opt_mss = mss; in tcp_parse_options()2062 tcpopt->tcp_opt_wscale = TCP_MAX_WINSHIFT; in tcp_parse_options()2064 tcpopt->tcp_opt_wscale = up[2]; in tcp_parse_options()2083 if ((tcp = tcpopt->tcp) == NULL) { in tcp_parse_options()2151 tcpopt->tcp_opt_ts_val = BE32_TO_U32(up+2); in tcp_parse_options()2152 tcpopt->tcp_opt_ts_ecr = BE32_TO_U32(up+6); in tcp_parse_options()2234 tcp_opt_t tcpopt; in tcp_process_options() local2238 tcpopt.tcp = NULL; in tcp_process_options()2239 options = tcp_parse_options(tcph, &tcpopt); in tcp_process_options()[all …]
605 struct tcp_options tcpopt; member