/src/sys/netinet6/ |
dccp6_var.h | 40 extern struct in6pcb dccpb6;
|
sctp6_usrreq.c | 94 #ifndef in6pcb 95 #define in6pcb inpcb macro 577 struct in6pcb *inp6; 596 inp6 = (struct in6pcb *)inp; 629 struct in6pcb *inp6; 638 inp6 = (struct in6pcb *)inp; 796 struct in6pcb *inp6; 809 inp6 = (struct in6pcb *)inp; 919 struct in6pcb *inp6; 926 inp6 = (struct in6pcb *)so->so_pcb [all...] |
in6_var.h | 608 struct in6pcb;
|
/src/sys/netinet/ |
in_pcb.h | 134 struct in6pcb { struct 144 #define in6p_faddr(inpcb) (((struct in6pcb *)(inpcb))->in6p_ip6.ip6_dst) 145 #define in6p_laddr(inpcb) (((struct in6pcb *)(inpcb))->in6p_ip6.ip6_src) 146 #define const_in6p_faddr(inpcb) (((const struct in6pcb *)(inpcb))->in6p_ip6.ip6_dst) 147 #define const_in6p_laddr(inpcb) (((const struct in6pcb *)(inpcb))->in6p_ip6.ip6_src) 148 #define in6p_ip6(inpcb) (((struct in6pcb *)(inpcb))->in6p_ip6) 149 #define in6p_flowinfo(inpcb) (((struct in6pcb *)(inpcb))->in6p_ip6.ip6_flow) 150 #define const_in6p_flowinfo(inpcb) (((const struct in6pcb *)(inpcb))->in6p_ip6.ip6_flow) 151 #define in6p_hops6(inpcb) (((struct in6pcb *)(inpcb))->in6p_hops) 152 #define in6p_cksum(inpcb) (((struct in6pcb *)(inpcb))->in6p_cksum [all...] |
sctp_pcb.h | 291 char align[(sizeof(struct in6pcb) + SCTP_ALIGNM1) & 757 #define sotoin6pcb(so) ((struct in6pcb *)((so)->so_pcb))
|
in_pcb.c | 171 in6pcb_pool_cache = pool_cache_init(sizeof(struct in6pcb), coherency_unit, 223 memset(inp, 0, sizeof(struct in6pcb));
|
sctp_usrreq.c | 87 #ifndef in6pcb 88 #define in6pcb inpcb macro 939 (((struct in6pcb *)inp)->in6p_flags & IN6P_IPV6_V6ONLY) 941 (((struct in6pcb *)inp)->inp_flags & IN6P_IPV6_V6ONLY) 1242 struct in6pcb *inp6; 1243 inp6 = (struct in6pcb *)inp; 3239 struct in6pcb *in6p;
|
sctp_asconf.c | 1720 struct in6pcb *inp6; 1722 inp6 = (struct in6pcb *)&inp->ip_inp.inp; 1818 struct in6pcb *inp6; 1819 inp6 = (struct in6pcb *)&inp->ip_inp.inp;
|
sctp_pcb.c | 693 (((struct in6pcb *)inp)->in6p_flags & IN6P_IPV6_V6ONLY) 1586 (((struct in6pcb *)t_inp)->in6p_flags & IN6P_IPV6_V6ONLY)) { 1600 (((struct in6pcb *)inp)->in6p_flags & IN6P_IPV6_V6ONLY) 1646 if (((struct in6pcb *)inp)->in6p_flags & IN6P_IPV6_V6ONLY) {
|
sctputil.c | 707 struct in6pcb *inp6; 711 inp6 = (struct in6pcb *)m;
|
sctp_output.c | 86 #ifndef in6pcb 87 #define in6pcb inpcb macro 2446 ret = ip6_output(m, ((struct in6pcb *)inp)->in6p_outputopts, 2449 ((struct in6pcb *)inp)->in6p_moptions, 3372 (((struct in6pcb *)in_inp)->in6p_flags & IN6P_IPV6_V6ONLY)
|
/src/usr.bin/systat/ |
netstat.c | 266 struct in6pcb in6pcb; local in function:fetchnetstat6 273 KREAD(inpcbp, &in6pcb, sizeof (in6pcb)); 274 inp = (struct inpcb *)&in6pcb;
|
/src/usr.bin/fstat/ |
fstat.c | 1066 struct in6pcb in6pcb; local in function:socktrans 1153 if (kvm_read(kd, (u_long)so.so_pcb, (char *)&in6pcb, 1154 sizeof(in6pcb)) != sizeof(in6pcb)) { 1155 dprintf("can't read in6pcb at %p", so.so_pcb); 1158 struct inpcb *inp = (struct inpcb *)&in6pcb;
|
/src/usr.bin/netstat/ |
inet6.c | 144 struct in6pcb in6pcb; variable in typeref:struct:in6pcb 313 kread((u_long)next, (char *)&in6pcb, sizeof in6pcb); 314 inp = (struct inpcb *)&in6pcb;
|
/src/sys/netipsec/ |
key.c | 1523 struct in6pcb *pcb = sotoin6pcb(so);
|