diff options
Diffstat (limited to 'epan/dissectors/packet-arp.h')
-rw-r--r-- | epan/dissectors/packet-arp.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/epan/dissectors/packet-arp.h b/epan/dissectors/packet-arp.h new file mode 100644 index 00000000..e6442112 --- /dev/null +++ b/epan/dissectors/packet-arp.h @@ -0,0 +1,21 @@ +/* packet-arp.h + * Definitions of routines for ARP packet disassembly that are used + * elsewhere + * + * Wireshark - Network traffic analyzer + * By Gerald Combs <gerald@wireshark.org> + * Copyright 1998 Gerald Combs + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#ifndef __PACKET_ARP_H__ +#define __PACKET_ARP_H__ + +const gchar *tvb_arphrdaddr_to_str(wmem_allocator_t *scope, tvbuff_t *tvb, gint offset, int ad_len, guint16 type); + +void dissect_atm_nsap(tvbuff_t *tvb, packet_info* pinfo, int offset, int len, proto_tree *tree); + +extern const value_string arp_hrd_vals[]; + +#endif /* packet-atm.h */ |