net/6lowpan/nhc_ipv6.c

Source file repositories/reference/linux-study-clean/net/6lowpan/nhc_ipv6.c

File Facts

System
Linux kernel
Corpus path
net/6lowpan/nhc_ipv6.c
Extension
.c
Size
436 bytes
Lines
17
Domain
Networking Core
Bucket
Sockets, Protocols, Packet Path, And Network Policy
Inferred role
Networking Core: implementation source
Status
source implementation candidate

Why This File Exists

Networking stack implementation surface: socket APIs, protocol dispatch, packet flow, routing, filtering, and network namespaces.

Dependency Surface

Detected Declarations

Annotated Snippet

// SPDX-License-Identifier: GPL-2.0-or-later
/*
 *	6LoWPAN IPv6 Header compression according to RFC6282
 */

#include "nhc.h"

#define LOWPAN_NHC_IPV6_ID_0	0xee
#define LOWPAN_NHC_IPV6_MASK_0	0xfe

LOWPAN_NHC(nhc_ipv6, "RFC6282 IPv6", NEXTHDR_IPV6, 0, LOWPAN_NHC_IPV6_ID_0,
	   LOWPAN_NHC_IPV6_MASK_0, NULL, NULL);

module_lowpan_nhc(nhc_ipv6);
MODULE_DESCRIPTION("6LoWPAN next header RFC6282 IPv6 compression");
MODULE_LICENSE("GPL");

Annotation

Implementation Notes