commit damnit!

This commit is contained in:
deraadt 1993-04-06 06:50:20 +00:00
parent d64d6e2c56
commit bacbdac9c8

View File

@ -37,7 +37,7 @@
*
* @(#)bpfdesc.h 7.1 (Berkeley) 5/7/91
*
* @(#) $Header: /cvsroot/src/sys/net/bpfdesc.h,v 1.2 1993/03/25 00:27:55 cgd Exp $ (LBL)
* @(#) $Header: /cvsroot/src/sys/net/bpfdesc.h,v 1.3 1993/04/06 06:50:20 deraadt Exp $ (LBL)
*/
/*
@ -71,9 +71,18 @@ struct bpf_d {
u_char bd_promisc; /* true if listening promiscuously */
u_char bd_state; /* idle, waiting, or timed out */
u_char bd_immediate; /* true to return on packet arrival */
#if BSD <= 199103
u_char bd_selcoll; /* true if selects collide */
int bd_timedout;
#if defined(__386BSD__)
pid_t bd_selpid; /* process that last selected us */
#else
struct proc * bd_selproc; /* process that last selected us */
#endif
#else /* BSD > 199103 */
u_char bd_pad; /* explicit alignment */
struct selinfo bd_sel; /* bsd select info */
#endif
};
/*