diff options
Diffstat (limited to 'sys/net/bpfdesc.h')
-rw-r--r-- | sys/net/bpfdesc.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/net/bpfdesc.h b/sys/net/bpfdesc.h index 0edcaf6..7db0e12 100644 --- a/sys/net/bpfdesc.h +++ b/sys/net/bpfdesc.h @@ -81,7 +81,8 @@ struct bpf_d { u_char bd_state; /* idle, waiting, or timed out */ u_char bd_immediate; /* true to return on packet arrival */ int bd_hdrcmplt; /* false to fill in src lladdr automatically */ - int bd_seesent; /* true if bpf should see sent packets */ + int bd_direction; /* select packet direction */ + int bd_feedback; /* true to feed back sent packets */ int bd_async; /* non-zero if packet reception should generate signal */ int bd_sig; /* signal to send upon packet reception */ struct sigio * bd_sigio; /* information for async I/O */ @@ -119,7 +120,8 @@ struct xbpf_d { u_char bd_promisc; u_char bd_immediate; int bd_hdrcmplt; - int bd_seesent; + int bd_direction; + int bd_feedback; int bd_async; u_long bd_rcount; u_long bd_dcount; |