Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.10 17 lines 490 B view raw
1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * 6LoWPAN IPv6 Destination Options Header compression according to 4 * RFC6282 5 */ 6 7#include "nhc.h" 8 9#define LOWPAN_NHC_DEST_ID_0 0xe6 10#define LOWPAN_NHC_DEST_MASK_0 0xfe 11 12LOWPAN_NHC(nhc_dest, "RFC6282 Destination Options", NEXTHDR_DEST, 0, 13 LOWPAN_NHC_DEST_ID_0, LOWPAN_NHC_DEST_MASK_0, NULL, NULL); 14 15module_lowpan_nhc(nhc_dest); 16MODULE_DESCRIPTION("6LoWPAN next header RFC6282 Destination Options compression"); 17MODULE_LICENSE("GPL");