blob: 0cbcc7806469d965cdec8b78b07d23205f4ea416 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Alexander Aringff0fcc22015-01-09 16:42:59 +01002/*
3 * 6LoWPAN IPv6 Destination Options Header compression according to
4 * RFC6282
Alexander Aringff0fcc22015-01-09 16:42:59 +01005 */
6
7#include "nhc.h"
8
Alexander Aringff0fcc22015-01-09 16:42:59 +01009#define LOWPAN_NHC_DEST_ID_0 0xe6
10#define LOWPAN_NHC_DEST_MASK_0 0xfe
11
Alexander Aringff0fcc22015-01-09 16:42:59 +010012LOWPAN_NHC(nhc_dest, "RFC6282 Destination Options", NEXTHDR_DEST, 0,
Alexander Aring31264f92022-04-27 23:05:33 -040013 LOWPAN_NHC_DEST_ID_0, LOWPAN_NHC_DEST_MASK_0, NULL, NULL);
Alexander Aringff0fcc22015-01-09 16:42:59 +010014
15module_lowpan_nhc(nhc_dest);
16MODULE_DESCRIPTION("6LoWPAN next header RFC6282 Destination Options compression");
17MODULE_LICENSE("GPL");