2 * netsniff-ng - the packet sniffing beast
3 * Copyright 2009 - 2013 Daniel Borkmann.
4 * Subject to the GPL, version 2.
22 #define PRINT_HEX_ASCII 4
25 static const char * const packet_types
[256]={
34 extern char *if_indextoname(unsigned ifindex
, char *ifname
);
36 static inline const char *__show_ts_source(uint32_t status
)
38 if (status
& TP_STATUS_TS_RAW_HARDWARE
)
40 else if (status
& TP_STATUS_TS_SYS_HARDWARE
)
42 else if (status
& TP_STATUS_TS_SOFTWARE
)
48 static inline void show_frame_hdr(struct frame_map
*hdr
, int mode
)
52 if (mode
== PRINT_NONE
)
58 packet_types
[hdr
->s_ll
.sll_pkttype
] ? : "?",
59 if_indextoname(hdr
->s_ll
.sll_ifindex
, tmp
) ? : "?",
63 tprintf("%s %s %u %us.%uns %s\n",
64 packet_types
[hdr
->s_ll
.sll_pkttype
] ? : "?",
65 if_indextoname(hdr
->s_ll
.sll_ifindex
, tmp
) ? : "?",
66 hdr
->tp_h
.tp_len
, hdr
->tp_h
.tp_sec
,
68 __show_ts_source(hdr
->tp_h
.tp_status
));
73 extern void dissector_init_all(int fnttype
);
74 extern void dissector_entry_point(uint8_t *packet
, size_t len
, int linktype
, int mode
);
75 extern void dissector_cleanup_all(void);
76 extern int dissector_set_print_type(void *ptr
, int type
);
78 #endif /* DISSECTOR_H */