diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2022-10-19 11:43:45 +1100 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2022-10-19 03:34:26 +0200 |
commit | 67ab6171729cfcf7867cbb92a2099d88d86f6e6b (patch) | |
tree | f4422311d378d56a79409b16aaa1343afc71c8cb /checksum.h | |
parent | 7abd2b0d727b4dad0f92d8c3130931d023e58514 (diff) | |
download | passt-67ab6171729cfcf7867cbb92a2099d88d86f6e6b.tar passt-67ab6171729cfcf7867cbb92a2099d88d86f6e6b.tar.gz passt-67ab6171729cfcf7867cbb92a2099d88d86f6e6b.tar.bz2 passt-67ab6171729cfcf7867cbb92a2099d88d86f6e6b.tar.lz passt-67ab6171729cfcf7867cbb92a2099d88d86f6e6b.tar.xz passt-67ab6171729cfcf7867cbb92a2099d88d86f6e6b.tar.zst passt-67ab6171729cfcf7867cbb92a2099d88d86f6e6b.zip |
Add csum_icmp4() helper for calculating ICMP checksums
Although tap_ip_send() is currently the only place calculating ICMP
checksums, create a helper function for symmetry with ICMPv6. For
future flexibility it allows the ICMPv6 header and payload to be in
separate buffers.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'checksum.h')
-rw-r--r-- | checksum.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -6,11 +6,13 @@ #ifndef CHECKSUM_H #define CHECKSUM_H +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_icmp4(struct icmphdr *ih, 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); |