Searched refs:t_ports (Results 1 – 4 of 4) sorted by relevance
/freebsd/usr.sbin/ctld/ |
H A D | ctld.c | 796 TAILQ_FOREACH(port, &target->t_ports, p_ts) { in isns_do_register() 1041 TAILQ_INSERT_TAIL(&target->t_ports, port, p_ts); in port_new() 1089 TAILQ_INSERT_TAIL(&target->t_ports, port, p_ts); in port_new_ioctl() 1115 TAILQ_INSERT_TAIL(&target->t_ports, port, p_ts); in port_new_pp() 1157 TAILQ_REMOVE(&port->p_target->t_ports, port, p_ts); in port_delete() 1203 TAILQ_INIT(&targ->t_ports); in target_new() 1214 TAILQ_FOREACH_SAFE(port, &targ->t_ports, p_ts, tport) in target_delete() 1522 if (TAILQ_EMPTY(&targ->t_ports)) { in conf_verify()
|
H A D | discovery.c | 112 TAILQ_FOREACH(port, &targ->t_ports, p_ts) { in discovery_add_target()
|
H A D | ctld.h | 181 TAILQ_HEAD(, port) t_ports;
|
/freebsd/sys/netinet/ |
H A D | tcp_subr.c | 2981 } t_ports; in tcp6_ctlinput_with_port() local 3036 bzero(&t_ports, sizeof(struct tcp_ports)); in tcp6_ctlinput_with_port() 3037 m_copydata(m, off, sizeof(struct tcp_ports), (caddr_t)&t_ports); in tcp6_ctlinput_with_port() 3038 inp = in6_pcblookup(&V_tcbinfo, &ip6->ip6_dst, t_ports.th_dport, in tcp6_ctlinput_with_port() 3039 &ip6->ip6_src, t_ports.th_sport, INPLOOKUP_WLOCKPCB, NULL); in tcp6_ctlinput_with_port() 3093 inc.inc_fport = t_ports.th_dport; in tcp6_ctlinput_with_port() 3094 inc.inc_lport = t_ports.th_sport; in tcp6_ctlinput_with_port()
|