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 f2aeea57504cbbc58da3c59b939fc16150087648 16 lines 472 B view raw
1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * 6LoWPAN IPv6 Routing Header compression according to RFC6282 4 */ 5 6#include "nhc.h" 7 8#define LOWPAN_NHC_ROUTING_ID_0 0xe2 9#define LOWPAN_NHC_ROUTING_MASK_0 0xfe 10 11LOWPAN_NHC(nhc_routing, "RFC6282 Routing", NEXTHDR_ROUTING, 0, 12 LOWPAN_NHC_ROUTING_ID_0, LOWPAN_NHC_ROUTING_MASK_0, NULL, NULL); 13 14module_lowpan_nhc(nhc_routing); 15MODULE_DESCRIPTION("6LoWPAN next header RFC6282 Routing compression"); 16MODULE_LICENSE("GPL");