Searched refs:tcpopt (Results 1 – 4 of 4) sorted by relevance
241 tcp_parse_options(tcpha_t *tcpha, tcp_opt_t *tcpopt) in tcp_parse_options() argument271 tcpopt->tcp_opt_mss = mss; in tcp_parse_options()282 tcpopt->tcp_opt_wscale = TCP_MAX_WINSHIFT; in tcp_parse_options()284 tcpopt->tcp_opt_wscale = up[2]; in tcp_parse_options()303 if ((tcp = tcpopt->tcp) == NULL) { in tcp_parse_options()370 tcpopt->tcp_opt_ts_val = BE32_TO_U32(up+2); in tcp_parse_options()371 tcpopt->tcp_opt_ts_ecr = BE32_TO_U32(up+6); in tcp_parse_options()404 tcp_opt_t tcpopt; in tcp_process_options() local410 tcpopt.tcp = NULL; in tcp_process_options()411 options = tcp_parse_options(tcpha, &tcpopt); in tcp_process_options()[all …]
507 tcp_opt_t tcpopt; in tcp_time_wait_processing() local521 if (!tcp_paws_check(tcp, tcpha, &tcpopt)) { in tcp_time_wait_processing()675 TSTMP_GEQ(tcpopt.tcp_opt_ts_val, tcp->tcp_ts_recent) && in tcp_time_wait_processing()677 tcp->tcp_ts_recent = tcpopt.tcp_opt_ts_val; in tcp_time_wait_processing()
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