1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /*
- * $Id$
- *
- * Copyright (c) 2001 Jordan Ritter <[email protected]>
- *
- * Please refer to the COPYRIGHT file for more information.
- *
- *
- */
- #define VERSION "1.40.1"
- #define ETHHDR_SIZE 14
- #define TOKENRING_SIZE 22
- #define PPPHDR_SIZE 4
- #define SLIPHDR_SIZE 16
- #define RAWHDR_SIZE 0
- #define LOOPHDR_SIZE 4
- #define FDDIHDR_SIZE 21
- #define ISDNHDR_SIZE 16
- #ifndef IP_OFFMASK
- #define IP_OFFMASK 0x1fff
- #endif
- #define WORD_REGEX "((^%s\\W)|(\\W%s$)|(\\W%s\\W))"
- #define IP_ONLY "ip and ( %s)"
- char *get_filter(char **);
- void process(u_char *, struct pcap_pkthdr*, u_char *);
- void _dump(char *, int);
- void dump_line_by_line(char *, int);
- void clean_exit(int);
- void usage(int);
- void version(void);
- int re_match_func(char *, int);
- int bin_match_func(char *, int);
- int blank_match_func(char *, int);
- int strishex(char *);
- void print_time_absolute(struct pcap_pkthdr *);
- void print_time_diff_init(struct pcap_pkthdr *);
- void print_time_diff(struct pcap_pkthdr *);
- void dump_delay_proc_init(struct pcap_pkthdr *);
- void dump_delay_proc(struct pcap_pkthdr *);
- void update_windowsize(int);
|