summaryrefslogtreecommitdiffstats
path: root/lib/checksum.h
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1999-05-10 23:37:39 +0200
committerMartin Mares <mj@ucw.cz>1999-05-10 23:37:39 +0200
commit1a54d44a23de7b0bf0dfe62dd3d09d8167e5a597 (patch)
tree1192620688836472b96c2d1a1eecf11c167c2d27 /lib/checksum.h
parenta2697f02ac5109e749bff4d07bee6cedd0ab650b (diff)
downloadbird-1a54d44a23de7b0bf0dfe62dd3d09d8167e5a597.tar
bird-1a54d44a23de7b0bf0dfe62dd3d09d8167e5a597.zip
Added packet checksumming code. Watch the comments for an explanation.
Diffstat (limited to 'lib/checksum.h')
-rw-r--r--lib/checksum.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/checksum.h b/lib/checksum.h
new file mode 100644
index 0000000..8151554
--- /dev/null
+++ b/lib/checksum.h
@@ -0,0 +1,20 @@
+/*
+ * BIRD Library -- IP One-Complement Checksum
+ *
+ * (c) 1999 Martin Mares <mj@ucw.cz>
+ *
+ * Can be freely distributed and used under the terms of the GNU GPL.
+ */
+
+#ifndef _BIRD_CHECKSUM_H_
+#define _BIRD_CHECKSUM_H_
+
+/*
+ * Both checksumming functions accept a vararg list of packet
+ * fragments finished by NULL pointer.
+ */
+
+int ipsum_verify(void *frag, unsigned len, ...);
+u16 ipsum_calculate(void *frag, unsigned len, ...);
+
+#endif