include/net/sctp/checksum.h

Source file repositories/reference/linux-study-clean/include/net/sctp/checksum.h

File Facts

System
Linux kernel
Corpus path
include/net/sctp/checksum.h
Extension
.h
Size
1072 bytes
Lines
41
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

#ifndef __sctp_checksum_h__
#define __sctp_checksum_h__

#include <linux/types.h>
#include <linux/sctp.h>

static inline __le32 sctp_compute_cksum(const struct sk_buff *skb,
					unsigned int offset)
{
	struct sctphdr *sh = (struct sctphdr *)(skb->data + offset);
	__le32 old = sh->checksum;
	u32 new;

	sh->checksum = 0;
	new = ~skb_crc32c(skb, offset, skb->len - offset, ~0);
	sh->checksum = old;
	return cpu_to_le32(new);
}

#endif /* __sctp_checksum_h__ */

Annotation

Implementation Notes