Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-6lowpan.h
1 /* packet-6lowpan.h
2  * Routines for 6LoWPAN packet disassembly
3  *
4  * SPDX-License-Identifier: GPL-2.0-or-later
5  */
6 
7 #ifndef __PACKET_6LOWPAN_H__
8 #define __PACKET_6LOWPAN_H__
9 
10 /* Inserts new compression context information into the 6LoWPAN context table.
11  * The compression context is distributed via some options added to the neighbor
12  * discovery protocol, so the ICMPv6 dissector needs to call this routine.
13  */
14 extern void lowpan_context_insert(guint8 cid, guint16 pan, guint8 plen,
15  ws_in6_addr *prefix, guint frame);
16 
17 #endif /* __PACKET_6LOWPAN_H__ */
Definition: inet_ipv6.h:21