aboutsummaryrefslogtreecommitdiff
path: root/src/vpn/gnunet-vpn-checksum.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-01-02 10:22:43 +0000
committerChristian Grothoff <christian@grothoff.org>2012-01-02 10:22:43 +0000
commitb34e3da4e96d110290706f55ec44c97e796d65cd (patch)
treeb87db9a2700de6dbcccc2728df674802b8eb626d /src/vpn/gnunet-vpn-checksum.h
parentd583ad46d4babd962f362deac20fa5aa6cdce7c7 (diff)
downloadgnunet-b34e3da4e96d110290706f55ec44c97e796d65cd.tar.gz
gnunet-b34e3da4e96d110290706f55ec44c97e796d65cd.zip
-vpn should use crc16 from util
Diffstat (limited to 'src/vpn/gnunet-vpn-checksum.h')
-rw-r--r--src/vpn/gnunet-vpn-checksum.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/vpn/gnunet-vpn-checksum.h b/src/vpn/gnunet-vpn-checksum.h
deleted file mode 100644
index 51f044380..000000000
--- a/src/vpn/gnunet-vpn-checksum.h
+++ /dev/null
@@ -1,37 +0,0 @@
1/*
2 This file is part of GNUnet.
3 (C) 2010 Christian Grothoff
4
5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 3, or (at your
8 option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19*/
20#ifndef GNUNET_VPN_CHECKSUM_H
21#define GNUNET_VPN_CHECKSUM_H
22
23#include <platform.h>
24
25uint32_t
26calculate_checksum_update (uint32_t sum, uint16_t * hdr, short len);
27
28uint16_t
29calculate_checksum_end (uint32_t sum);
30
31/**
32 * Calculate the checksum of an IPv4-Header
33 */
34uint16_t
35calculate_ip_checksum (uint16_t * hdr, short len);
36
37#endif /* end of include guard: GNUNET-VPN-CHECKSUM_H */