diff options
author | assar <assar> | 2000-06-26 04:57:11 +0000 |
---|---|---|
committer | assar <assar> | 2000-06-26 04:57:11 +0000 |
commit | 5ea9c97fb8b3f468b56e543688d15a373b98aa73 (patch) | |
tree | 4189faaac14eb7f7d2be3bf078bbe5e44e71dde1 /pcap.h | |
parent | 44b4d1845b51a7994feb132c36d2d17fc4eb5efb (diff) |
(pcap_open_dead, bpf_validate, bpf_dump): add
Diffstat (limited to 'pcap.h')
-rw-r--r-- | pcap.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#) $Header: /tcpdump/master/libpcap/pcap.h,v 1.22 1999-12-08 19:54:03 mcr Exp $ (LBL) + * @(#) $Header: /tcpdump/master/libpcap/pcap.h,v 1.23 2000-06-26 04:57:11 assar Exp $ (LBL) */ #ifndef lib_pcap_h @@ -102,6 +102,7 @@ typedef void (*pcap_handler)(u_char *, const struct pcap_pkthdr *, char *pcap_lookupdev(char *); int pcap_lookupnet(char *, bpf_u_int32 *, bpf_u_int32 *, char *); pcap_t *pcap_open_live(char *, int, int, int, char *); +pcap_t *pcap_open_dead(int, int); pcap_t *pcap_open_offline(const char *, char *); void pcap_close(pcap_t *); int pcap_loop(pcap_t *, int, pcap_handler, u_char *); @@ -135,5 +136,7 @@ void pcap_dump(u_char *, const struct pcap_pkthdr *, const u_char *); /* XXX this guy lives in the bpf tree */ u_int bpf_filter(struct bpf_insn *, u_char *, u_int, u_int); +int bpf_validate(struct bpf_insn *f, int len); char *bpf_image(struct bpf_insn *, int); +void bpf_dump(struct bpf_program *, int); #endif |