Home
last modified time | relevance | path

Searched refs:in6pcb (Results 1 – 16 of 16) sorted by relevance

/netbsd-src/sys/netinet/
H A Din_pcb.h134 struct in6pcb { struct
144 #define in6p_faddr(inpcb) (((struct in6pcb *)(inpcb))->in6p_ip6.ip6_dst) argument
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 …]
H A Dsctp_pcb.h291 char align[(sizeof(struct in6pcb) + SCTP_ALIGNM1) &
757 #define sotoin6pcb(so) ((struct in6pcb *)((so)->so_pcb))
H A Dsctp_usrreq.c87 #ifndef in6pcb
88 #define in6pcb inpcb macro
939 (((struct in6pcb *)inp)->in6p_flags & IN6P_IPV6_V6ONLY) in sctp_fill_up_addresses()
941 (((struct in6pcb *)inp)->inp_flags & IN6P_IPV6_V6ONLY) in sctp_fill_up_addresses()
1242 struct in6pcb *inp6; in sctp_do_connect_x()
1243 inp6 = (struct in6pcb *)inp; in sctp_do_connect_x()
3239 struct in6pcb *in6p; in sctp_ctloutput()
H A Din_pcb.c171 in6pcb_pool_cache = pool_cache_init(sizeof(struct in6pcb), coherency_unit, in inpcb_poolinit()
223 memset(inp, 0, sizeof(struct in6pcb)); in inpcb_create()
H A Dsctp_asconf.c1720 struct in6pcb *inp6; in sctp_addr_mgmt_assoc()
1722 inp6 = (struct in6pcb *)&inp->ip_inp.inp; in sctp_addr_mgmt_assoc()
1818 struct in6pcb *inp6; in sctp_addr_mgmt_ep()
1819 inp6 = (struct in6pcb *)&inp->ip_inp.inp; in sctp_addr_mgmt_ep()
H A Dsctp_pcb.c693 (((struct in6pcb *)inp)->in6p_flags & IN6P_IPV6_V6ONLY) in sctp_endpoint_probe()
1586 (((struct in6pcb *)t_inp)->in6p_flags & IN6P_IPV6_V6ONLY)) { in sctp_isport_inuse()
1600 (((struct in6pcb *)inp)->in6p_flags & IN6P_IPV6_V6ONLY) in sctp_isport_inuse()
1646 if (((struct in6pcb *)inp)->in6p_flags & IN6P_IPV6_V6ONLY) { in sctp_inpcb_bind()
H A Dsctputil.c707 struct in6pcb *inp6; in sctp_init_asoc()
711 inp6 = (struct in6pcb *)m; in sctp_init_asoc()
H A Dsctp_output.c86 #ifndef in6pcb
87 #define in6pcb inpcb macro
2446 ret = ip6_output(m, ((struct in6pcb *)inp)->in6p_outputopts, in sctp_lowlevel_chunk_output()
2449 ((struct in6pcb *)inp)->in6p_moptions, in sctp_lowlevel_chunk_output()
3372 (((struct in6pcb *)in_inp)->in6p_flags & IN6P_IPV6_V6ONLY) in sctp_send_initiate_ack()
/netbsd-src/sys/netinet6/
H A Dsctp6_usrreq.c94 #ifndef in6pcb
95 #define in6pcb inpcb macro
577 struct in6pcb *inp6; in sctp6_attach()
596 inp6 = (struct in6pcb *)inp; in sctp6_attach()
629 struct in6pcb *inp6; in sctp6_bind()
638 inp6 = (struct in6pcb *)inp; in sctp6_bind()
796 struct in6pcb *inp6; in sctp6_send()
809 inp6 = (struct in6pcb *)inp; in sctp6_send()
919 struct in6pcb *inp6; in sctp6_connect()
926 inp6 = (struct in6pcb *)so->so_pcb; in sctp6_connect()
[all …]
H A Ddccp6_var.h40 extern struct in6pcb dccpb6;
H A Din6_var.h634 struct in6pcb;
/netbsd-src/usr.bin/systat/
H A Dnetstat.c266 struct in6pcb in6pcb; in fetchnetstat6() local
273 KREAD(inpcbp, &in6pcb, sizeof (in6pcb)); in fetchnetstat6()
274 inp = (struct inpcb *)&in6pcb; in fetchnetstat6()
/netbsd-src/usr.bin/fstat/
H A Dfstat.c1066 struct in6pcb in6pcb; in socktrans() local
1153 if (kvm_read(kd, (u_long)so.so_pcb, (char *)&in6pcb, in socktrans()
1154 sizeof(in6pcb)) != sizeof(in6pcb)) { in socktrans()
1158 struct inpcb *inp = (struct inpcb *)&in6pcb; in socktrans()
/netbsd-src/usr.bin/netstat/
H A Dinet6.c144 struct in6pcb in6pcb; variable
313 kread((u_long)next, (char *)&in6pcb, sizeof in6pcb); in getpcblist_kmem()
314 inp = (struct inpcb *)&in6pcb; in getpcblist_kmem()
/netbsd-src/doc/
H A DBRANCHES708 Description: merge in6pcb with inpcb
724 inpcb/in6pcb source files and change the function names,
726 layout (in6pcb is gone).
/netbsd-src/sys/netipsec/
H A Dkey.c1523 struct in6pcb *pcb = sotoin6pcb(so);