Searched refs:tra (Results 1 – 5 of 5) sorted by relevance
| /xnu-12377.81.4/bsd/netinet/ |
| H A D | tcp_syncookie.c | 352 struct tcp_respond_args tra; in syncookie_respond() local 354 bzero(&tra, sizeof(tra)); in syncookie_respond() 355 tra.nocell = INP_NO_CELLULAR(inp) ? 1 : 0; in syncookie_respond() 356 tra.noexpensive = INP_NO_EXPENSIVE(inp) ? 1 : 0; in syncookie_respond() 357 tra.noconstrained = INP_NO_CONSTRAINED(inp) ? 1 : 0; in syncookie_respond() 358 tra.awdl_unrestricted = INP_AWDL_UNRESTRICTED(inp) ? 1 : 0; in syncookie_respond() 359 tra.intcoproc_allowed = INP_INTCOPROC_ALLOWED(inp) ? 1 : 0; in syncookie_respond() 360 tra.management_allowed = INP_MANAGEMENT_ALLOWED(inp) ? 1 : 0; in syncookie_respond() 361 tra.keep_alive = 1; in syncookie_respond() 363 tra.ifscope = tp->t_inpcb->inp_boundifp->if_index; in syncookie_respond() [all …]
|
| H A D | tcp_timer.c | 993 struct tcp_respond_args tra; in tcp_send_keep_alive() local 995 bzero(&tra, sizeof(tra)); in tcp_send_keep_alive() 996 tra.nocell = INP_NO_CELLULAR(inp) ? 1 : 0; in tcp_send_keep_alive() 997 tra.noexpensive = INP_NO_EXPENSIVE(inp) ? 1 : 0; in tcp_send_keep_alive() 998 tra.noconstrained = INP_NO_CONSTRAINED(inp) ? 1 : 0; in tcp_send_keep_alive() 999 tra.awdl_unrestricted = INP_AWDL_UNRESTRICTED(inp) ? 1 : 0; in tcp_send_keep_alive() 1000 tra.intcoproc_allowed = INP_INTCOPROC_ALLOWED(inp) ? 1 : 0; in tcp_send_keep_alive() 1001 tra.management_allowed = INP_MANAGEMENT_ALLOWED(inp) ? 1 : 0; in tcp_send_keep_alive() 1002 tra.keep_alive = 1; in tcp_send_keep_alive() 1004 tra.ifscope = tp->t_inpcb->inp_boundifp->if_index; in tcp_send_keep_alive() [all …]
|
| H A D | tcp_subr.c | 934 struct tcp_respond_args *tra, bool send_syncookie) in tcp_respond() argument 1068 if (tra->keep_alive) { in tcp_respond() 1149 ip6oa.ip6oa_boundif = tra->ifscope; in tcp_respond() 1154 if (tra->ifscope != IFSCOPE_NONE) { in tcp_respond() 1157 if (tra->nocell) { in tcp_respond() 1160 if (tra->noexpensive) { in tcp_respond() 1163 if (tra->noconstrained) { in tcp_respond() 1166 if (tra->awdl_unrestricted) { in tcp_respond() 1169 if (tra->intcoproc_allowed) { in tcp_respond() 1172 if (tra->management_allowed) { in tcp_respond() [all …]
|
| H A D | tcp_input.c | 2786 struct tcp_respond_args tra; in tcp_input() local 6310 bzero(&tra, sizeof(tra)); in tcp_input() 6311 tra.ifscope = ifscope; in tcp_input() 6312 tra.awdl_unrestricted = 1; in tcp_input() 6313 tra.intcoproc_allowed = 1; in tcp_input() 6314 tra.management_allowed = 1; in tcp_input() 6318 0, TH_RST, NULL, 0, 0, 0, &tra, false); in tcp_input() 6325 (tcp_seq)0, 0, TH_RST | TH_ACK, NULL, 0, 0, 0, &tra, false); in tcp_input()
|
| H A D | mptcp_subr.c | 4359 struct tcp_respond_args tra; in mptcp_subflow_mustrst_ev() local 4361 bzero(&tra, sizeof(tra)); in mptcp_subflow_mustrst_ev() 4363 tra.ifscope = inp->inp_boundifp->if_index; in mptcp_subflow_mustrst_ev() 4365 tra.ifscope = IFSCOPE_NONE; in mptcp_subflow_mustrst_ev() 4367 tra.awdl_unrestricted = 1; in mptcp_subflow_mustrst_ev() 4371 tp->rcv_nxt, tp->snd_una, 0, TH_RST, NULL, 0, 0, 0, &tra, false); in mptcp_subflow_mustrst_ev()
|