flowtop: Remove unused parameters from draw_help() and draw_footer()
[netsniff-ng.git] / trafgen_l4.h
blobe94ff23859635d04e025f38c4e1c20e13655db9e
1 #ifndef TRAFGEN_L4_H
2 #define TRAFGEN_L4_H
4 enum udp_field {
5 UDP_SPORT,
6 UDP_DPORT,
7 UDP_LEN,
8 UDP_CSUM,
9 };
11 enum tcp_field {
12 TCP_SPORT,
13 TCP_DPORT,
14 TCP_SEQ,
15 TCP_ACK_SEQ,
16 TCP_DOFF,
17 TCP_CWR,
18 TCP_ECE,
19 TCP_URG,
20 TCP_ACK,
21 TCP_PSH,
22 TCP_RST,
23 TCP_SYN,
24 TCP_FIN,
25 TCP_WINDOW,
26 TCP_CSUM,
27 TCP_URG_PTR,
30 enum icmpv6_field {
31 ICMPV6_TYPE,
32 ICMPV6_CODE,
33 ICMPV6_CSUM,
36 extern void protos_l4_init(void);
38 #endif /* TRAFGEN_L4_H */