Deleted Added
full compact
34c34
< * $Id: in_pcb.h,v 1.24 1998/03/24 18:06:11 wollman Exp $
---
> * $Id: in_pcb.h,v 1.25 1998/03/28 10:18:22 bde Exp $
50a51
> typedef u_quad_t inp_gen_t;
78c79
< u_quad_t inp_gencnt; /* generation count of this instance */
---
> inp_gen_t inp_gencnt; /* generation count of this instance */
86a88,107
> /*
> * Interface exported to userland by various protocols which use
> * inpcbs. Hack alert -- only define if struct xsocket is in scope.
> */
> #ifdef _SYS_SOCKETVAR_H_
> struct xinpcb {
> size_t xi_len; /* length of this structure */
> struct inpcb xi_inp;
> struct xsocket xi_socket;
> u_quad_t xi_alignment_hack;
> };
>
> struct xinpgen {
> size_t xig_len; /* length of this structure */
> u_int xig_count; /* number of PCBs at this time */
> inp_gen_t xig_gen; /* generation count at this time */
> so_gen_t xig_sogen; /* socket generation count at this time */
> };
> #endif /* _SYS_SOCKETVAR_H_ */
>