xmalloc: put __hidden behind signature
[netsniff-ng.git] / protos.h
blob9313872f223480f39f7361e8d1cb075a6efd171d
1 /*
2 * netsniff-ng - the packet sniffing beast
3 * By Daniel Borkmann <daniel@netsniff-ng.org>
4 * Copyright 2009, 2010 Daniel Borkmann.
5 * Subject to the GPL, version 2.
6 */
8 #ifndef PROTOS_H
9 #define PROTOS_H
11 struct protocol;
13 extern struct protocol arp_ops;
14 extern struct protocol ethernet_ops;
15 extern struct protocol icmpv4_ops;
16 extern struct protocol icmpv6_ops;
17 extern struct protocol igmp_ops;
18 extern struct protocol ip_auth_ops;
19 extern struct protocol ip_esp_ops;
20 extern struct protocol ipv4_ops;
21 extern struct protocol ipv6_ops;
22 extern struct protocol ipv6_dest_opts_ops;
23 extern struct protocol ipv6_fragm_ops;
24 extern struct protocol ipv6_hop_by_hop_ops;
25 extern struct protocol ipv6_in_ipv4_ops;
26 extern struct protocol ipv6_mobility_ops;
27 extern struct protocol ipv6_no_next_header_ops;
28 extern struct protocol ipv6_routing_ops;
29 extern struct protocol none_ops;
30 extern struct protocol tcp_ops;
31 extern struct protocol udp_ops;
32 extern struct protocol vlan_ops;
33 extern struct protocol ieee80211_ops;
34 extern struct protocol QinQ_ops;
35 extern struct protocol mpls_uc_ops;
37 #endif /* PROTOS_H */