diff options
Diffstat (limited to 'epan/dissectors/packet-6lowpan.h')
-rw-r--r-- | epan/dissectors/packet-6lowpan.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/epan/dissectors/packet-6lowpan.h b/epan/dissectors/packet-6lowpan.h index 72ab11ae..9440ed31 100644 --- a/epan/dissectors/packet-6lowpan.h +++ b/epan/dissectors/packet-6lowpan.h @@ -7,11 +7,13 @@ #ifndef __PACKET_6LOWPAN_H__ #define __PACKET_6LOWPAN_H__ +#include <wsutil/inet_addr.h> + /* Inserts new compression context information into the 6LoWPAN context table. * The compression context is distributed via some options added to the neighbor * discovery protocol, so the ICMPv6 dissector needs to call this routine. */ -extern void lowpan_context_insert(guint8 cid, guint16 pan, guint8 plen, - ws_in6_addr *prefix, guint frame); +extern void lowpan_context_insert(uint8_t cid, uint16_t pan, uint8_t plen, + ws_in6_addr *prefix, unsigned frame); #endif /* __PACKET_6LOWPAN_H__ */ |