Changeset View
Changeset View
Standalone View
Standalone View
sys/netinet6/in6_pcb.h
| Show First 20 Lines • Show All 70 Lines • ▼ Show 20 Lines | |||||
| void in6_pcbpurgeif0(struct inpcbinfo *, struct ifnet *); | void in6_pcbpurgeif0(struct inpcbinfo *, struct ifnet *); | ||||
| void in6_losing(struct inpcb *); | void in6_losing(struct inpcb *); | ||||
| int in6_pcbbind(struct inpcb *, struct sockaddr_in6 *, int, struct ucred *); | int in6_pcbbind(struct inpcb *, struct sockaddr_in6 *, int, struct ucred *); | ||||
| int in6_pcbconnect(struct inpcb *, struct sockaddr_in6 *, struct ucred *, | int in6_pcbconnect(struct inpcb *, struct sockaddr_in6 *, struct ucred *, | ||||
| bool); | bool); | ||||
| void in6_pcbdisconnect(struct inpcb *); | void in6_pcbdisconnect(struct inpcb *); | ||||
| struct inpcb *in6_pcblookup_local(struct inpcbinfo *, const struct in6_addr *, | struct inpcb *in6_pcblookup_local(struct inpcbinfo *, const struct in6_addr *, | ||||
| u_short, int, int, struct ucred *); | u_short, int, int, struct ucred *); | ||||
| struct inpcb *in6_pcblookup_hash_locked(struct inpcbinfo *pcbinfo, | struct inpcb *in6_pcblookup_internal(struct inpcbinfo *pcbinfo, | ||||
| const struct in6_addr *faddr, u_int fport_arg, | const struct in6_addr *faddr, u_int fport_arg, | ||||
| const struct in6_addr *laddr, u_int lport_arg, | const struct in6_addr *laddr, u_int lport_arg, | ||||
| int lookupflags, uint8_t numa_domain, int fib); | int lookupflags, uint8_t numa_domain, int fib); | ||||
| struct inpcb *in6_pcblookup(struct inpcbinfo *, const struct in6_addr *, u_int, | struct inpcb *in6_pcblookup(struct inpcbinfo *, const struct in6_addr *, u_int, | ||||
| const struct in6_addr *, u_int, int, struct ifnet *); | const struct in6_addr *, u_int, int, struct ifnet *); | ||||
| struct inpcb *in6_pcblookup_mbuf(struct inpcbinfo *, const struct in6_addr *, | struct inpcb *in6_pcblookup_mbuf(struct inpcbinfo *, const struct in6_addr *, | ||||
| u_int, const struct in6_addr *, u_int, int, struct ifnet *ifp, | u_int, const struct in6_addr *, u_int, int, struct ifnet *ifp, | ||||
| struct mbuf *); | struct mbuf *); | ||||
| Show All 15 Lines | |||||