public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
blob 6a20297a5826b371560af0daf0eab24cd78621d4 1055 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright (c) 2021 Red Hat GmbH
 * Author: Stefano Brivio <sbrivio@redhat.com>
 */

#ifndef CHECKSUM_H
#define CHECKSUM_H

struct udphdr;
struct icmphdr;
struct icmp6hdr;

uint32_t sum_16b(const void *buf, size_t len);
uint16_t csum_fold(uint32_t sum);
uint16_t csum_unaligned(const void *buf, size_t len, uint32_t init);
void csum_ip4_header(struct iphdr *ip4h);
void csum_udp4(struct udphdr *udp4hr,
	       struct in_addr saddr, struct in_addr daddr,
	       const void *payload, size_t len);
void csum_icmp4(struct icmphdr *ih, const void *payload, size_t len);
void csum_udp6(struct udphdr *udp6hr,
	       const struct in6_addr *saddr, const struct in6_addr *daddr,
	       const void *payload, size_t len);
void csum_icmp6(struct icmp6hdr *icmp6hr,
		const struct in6_addr *saddr, const struct in6_addr *daddr,
		const void *payload, size_t len);
uint16_t csum(const void *buf, size_t len, uint32_t init);
uint16_t csum_iov(struct iovec *iov, unsigned int n, uint32_t init);

#endif /* CHECKSUM_H */

debug log:

solving 6a20297a5826 ...
found 6a20297a5826 in https://archives.passt.top/passt-dev/20240202141151.3762941-5-lvivier@redhat.com/ ||
	https://archives.passt.top/passt-dev/20240214085628.210783-5-lvivier@redhat.com/
found 21c0310d3804 in https://passt.top/passt
preparing index
index prepared:
100644 21c0310d3804d93aa3e27551a9240f3197dd90d4	checksum.h

applying [1/1] https://archives.passt.top/passt-dev/20240202141151.3762941-5-lvivier@redhat.com/
diff --git a/checksum.h b/checksum.h
index 21c0310d3804..6a20297a5826 100644

Checking patch checksum.h...
Applied patch checksum.h cleanly.

skipping https://archives.passt.top/passt-dev/20240214085628.210783-5-lvivier@redhat.com/ for 6a20297a5826
index at:
100644 6a20297a5826b371560af0daf0eab24cd78621d4	checksum.h

Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).