Home
last modified time | relevance | path

Searched refs:inpcb (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/boot/include/netinet/
H A Din_pcb.h53 #define in6pcb inpcb /* for KAME src sync over BSD*'s */
65 LIST_HEAD(inpcbhead, inpcb);
183 struct inpcb { struct
184 LIST_ENTRY(inpcb) inp_hash; /* (h/i) hash list */
185 LIST_ENTRY(inpcb) inp_pcbgrouphash; /* (g/i) hash list */
186 LIST_ENTRY(inpcb) inp_list; /* (p/l) list for all PCBs for proto */
192 LIST_ENTRY(inpcb) inp_pcbgroup_wild; /* (g/i/h) group wildcard entry */ argument
236 LIST_ENTRY(inpcb) inp_portlist; /* (i/h) */ argument
238 #define inp_zero_size offsetof(struct inpcb, inp_gencnt)
279 struct inpcb xi_inp;
[all …]
H A Dudp_var.h55 struct inpcb;
58 typedef void(*udp_tun_func_t)(struct mbuf *, int off, struct inpcb *,
164 int udp_newudpcb(struct inpcb *);
178 struct inpcb *udp_notify(struct inpcb *inp, int errno);
H A Dip_var.h173 struct inpcb;
203 int inp_getmoptions(struct inpcb *, struct sockopt *);
204 int inp_setmoptions(struct inpcb *, struct sockopt *);
220 struct inpcb *);
227 void ip_savecontrol(struct inpcb *, struct mbuf **, struct ip *,
/illumos-gate/usr/src/uts/common/netinet/
H A Din_pcb.h29 struct inpcb { struct
30 struct inpcb *inp_next, *inp_prev; /* pointers to other pcb's */ argument
31 struct inpcb *inp_head; /* pointer back to chain of inpcb's */ argument
46 #define sotoinpcb(so) ((struct inpcb *)(so)->so_pcb) argument
H A Dtcp_var.h45 struct inpcb *t_inpcb; /* back pointer to internet pcb */
/illumos-gate/usr/src/uts/common/c2/
H A Daudit_record.h354 struct inpcb *so_pcb; /* protocol control block */
/illumos-gate/usr/src/boot/sys/sys/
H A Dsocket.h657 struct inpcb *so_sotoinpcb(struct socket *so);
/illumos-gate/usr/src/lib/libbsm/common/
H A Dau_to.c559 struct inpcb *inp = so->so_pcb; in au_to_socket()