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.8 16 lines 501 B view raw
1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * 6LoWPAN Extension Header compression according to RFC7400 4 */ 5 6#include "nhc.h" 7 8#define LOWPAN_GHC_EXT_DEST_ID_0 0xb6 9#define LOWPAN_GHC_EXT_DEST_MASK_0 0xfe 10 11LOWPAN_NHC(ghc_ext_dest, "RFC7400 Destination Extension Header", NEXTHDR_DEST, 12 0, LOWPAN_GHC_EXT_DEST_ID_0, LOWPAN_GHC_EXT_DEST_MASK_0, NULL, NULL); 13 14module_lowpan_nhc(ghc_ext_dest); 15MODULE_DESCRIPTION("6LoWPAN generic header destination extension compression"); 16MODULE_LICENSE("GPL");