2 * netsniff-ng - the packet sniffing beast
3 * By Daniel Borkmann <daniel@netsniff-ng.org>.
4 * Copyright (C) 2009, 2010 Daniel Borkmann
5 * Copyright (C) 2012 Christoph Jaeger <christoph@netsniff-ng.org>
6 * Subject to the GPL, version 2.
21 /* Needs to be filled out by user */
23 void (*print_full
)(struct pkt_buff
*pkt
);
24 void (*print_less
)(struct pkt_buff
*pkt
);
25 /* Used by program logic */
26 struct protocol
*next
;
27 void (*process
) (struct pkt_buff
*pkt
);
30 extern void empty(struct pkt_buff
*pkt
);
31 extern void hex(struct pkt_buff
*pkt
);
32 extern void ascii(struct pkt_buff
*pkt
);
33 extern void hex_ascii(struct pkt_buff
*pkt
);