| /src/sys/netinet/ | 
| in_pcb.c | 392 		vestigial_inpcb_t vestige;  local in function:inpcb_bind_port 416 		t6 = in6pcb_lookup_local(table, &mapped, sin->sin_port, wild, &vestige);
 419 		if (!t6 && vestige.valid) {
 420 		    if (!!reuseport != !!vestige.reuse_port) {
 428 			t = inpcb_lookup_local(table, sin->sin_addr, sin->sin_port, 1, &vestige);
 441 			if (!t && vestige.valid) {
 443 				     || !in_nullhost(vestige.laddr.v4)
 444 				     || !vestige.reuse_port)
 445 				    && so->so_uidinfo->ui_uid != vestige.uid) {
 450 		t = inpcb_lookup_local(table, sin->sin_addr, sin->sin_port, wild, &vestige);
 526  vestigial_inpcb_t vestige;  local in function:inpcb_connect
 [all...]
 | 
| in_pcb.h | 238 	struct vestigial_hooks *vestige;  member in struct:inpcbtable 
 | 
| tcp_input.c | 1213 	vestigial_inpcb_t vestige;  local in function:tcp_input 1215 	vestige.valid = 0;
 1382 		    ip->ip_dst, th->th_dport, &vestige);
 1383 		if (inp == NULL && !vestige.valid) {
 1389 		if (inp == NULL && !vestige.valid) {
 1396 			    th->th_sport, &d, th->th_dport, 0, &vestige);
 1397 			if (inp == NULL && !vestige.valid) {
 1404 		if (inp == NULL && !vestige.valid) {
 1431 		    th->th_sport, &ip6->ip6_dst, th->th_dport, faith, &vestige);
 1432 		if (inp == NULL && !vestige.valid)
 [all...]
 | 
| tcp_vtw.c | 1568 		tcbtable.vestige    = 0; 1868 		tcbtable.vestige = &tcp_hooks;
 2293 	struct vestigial_inpcb vestige;  local in function:vtw_debug_process
 2313 					  &vestige)) {
 2315 					vtw_restart(&vestige);
 2325 					  &vestige)) {
 2327 					vtw_restart(&vestige);
 
 | 
| /src/sys/netinet6/ | 
| in6_pcb.c | 277 			struct vestigial_inpcb vestige;  local in function:in6pcb_bind_port 281 			    sin6->sin6_port, wild, &vestige);
 285 			    && vestige.valid
 286 			    && !(reuseport && vestige.reuse_port))
 295 			struct vestigial_inpcb vestige;  local in function:in6pcb_bind_port
 298 			    sin6->sin6_port, wild, &vestige);
 302 			    && vestige.valid
 303 			    && !(reuseport && vestige.reuse_port))
 398 	struct vestigial_inpcb vestige;  local in function:in6pcb_connect
 510 				  inp->inp_lport, 0, &vestige)
 [all...]
 |