Searched refs:tcpopt (Results 1 – 4 of 4) sorted by relevance
604 tcp_opt_t tcpopt; in tcp_time_wait_processing() local623 tcpopt.tcp = tcp; in tcp_time_wait_processing()625 tcpopt.tcp = NULL; in tcp_time_wait_processing()626 options = tcp_parse_options(tcpha, &tcpopt); in tcp_time_wait_processing()630 } else if (!tcp_paws_check(tcp, &tcpopt)) { in tcp_time_wait_processing()783 TSTMP_GEQ(tcpopt.tcp_opt_ts_val, tcp->tcp_ts_recent) && in tcp_time_wait_processing()785 tcp->tcp_ts_recent = tcpopt.tcp_opt_ts_val; in tcp_time_wait_processing()
362 tcp_parse_options(tcpha_t *tcpha, tcp_opt_t *tcpopt) in tcp_parse_options() argument383 tcpopt->tcp_opt_ts_val = ABE32_TO_U32((up+4)); in tcp_parse_options()384 tcpopt->tcp_opt_ts_ecr = ABE32_TO_U32((up+8)); in tcp_parse_options()405 tcpopt->tcp_opt_mss = mss; in tcp_parse_options()416 tcpopt->tcp_opt_wscale = TCP_MAX_WINSHIFT; in tcp_parse_options()418 tcpopt->tcp_opt_wscale = up[2]; in tcp_parse_options()437 if ((tcp = tcpopt->tcp) == NULL) { in tcp_parse_options()504 tcpopt->tcp_opt_ts_val = BE32_TO_U32(up+2); in tcp_parse_options()505 tcpopt->tcp_opt_ts_ecr = BE32_TO_U32(up+6); in tcp_parse_options()516 bcopy(up + 2, tcpopt->tcp_opt_sig, in tcp_parse_options()[all …]
2020 tcp_parse_options(tcph_t *tcph, tcp_opt_t *tcpopt) in tcp_parse_options() argument2050 tcpopt->tcp_opt_mss = mss; in tcp_parse_options()2061 tcpopt->tcp_opt_wscale = TCP_MAX_WINSHIFT; in tcp_parse_options()2063 tcpopt->tcp_opt_wscale = up[2]; in tcp_parse_options()2082 if ((tcp = tcpopt->tcp) == NULL) { in tcp_parse_options()2150 tcpopt->tcp_opt_ts_val = BE32_TO_U32(up+2); in tcp_parse_options()2151 tcpopt->tcp_opt_ts_ecr = BE32_TO_U32(up+6); in tcp_parse_options()2233 tcp_opt_t tcpopt; in tcp_process_options() local2237 tcpopt.tcp = NULL; in tcp_process_options()2238 options = tcp_parse_options(tcph, &tcpopt); in tcp_process_options()[all …]
695 struct tcp_options tcpopt; member