aboutsummaryrefslogtreecommitdiff
path: root/lib/csum.c
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2009-06-09 17:10:18 -0700
committerBen Pfaff <blp@nicira.com>2009-06-09 17:10:18 -0700
commit21effc03849d9015fc71f2d634659c1766526bed (patch)
treeca1a02cb7aa2dbf43a2669baa2e5afb020145b4a /lib/csum.c
parentd06fd603791c1cc3775558d78f735c6a66fa0bbc (diff)
Add unit test for TCP/IP checksumming code.
Diffstat (limited to 'lib/csum.c')
-rw-r--r--lib/csum.c16
1 files changed, 13 insertions, 3 deletions
diff --git a/lib/csum.c b/lib/csum.c
index 5266be6d..75cbb53a 100644
--- a/lib/csum.c
+++ b/lib/csum.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008 Nicira Networks.
+ * Copyright (c) 2008, 2009 Nicira Networks.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@@ -17,7 +17,12 @@
#include <config.h>
#include "csum.h"
-/* Returns the IP checksum of the 'n' bytes in 'data'. */
+/* Returns the IP checksum of the 'n' bytes in 'data'.
+ *
+ * The return value has the same endianness as the data. That is, if 'data'
+ * consists of a packet in network byte order, then the return value is a value
+ * in network byte order, and if 'data' consists of a data structure in host
+ * byte order, then the return value is in host byte order. */
uint16_t
csum(const void *data, size_t n)
{
@@ -62,7 +67,12 @@ csum_continue(uint32_t partial, const void *data_, size_t n)
}
/* Returns the IP checksum corresponding to 'partial', which is a value updated
- * by some combination of csum_add16(), csum_add32(), and csum_continue(). */
+ * by some combination of csum_add16(), csum_add32(), and csum_continue().
+ *
+ * The return value has the same endianness as the checksummed data. That is,
+ * if the data consist of a packet in network byte order, then the return value
+ * is a value in network byte order, and if the data are a data structure in
+ * host byte order, then the return value is in host byte order. */
uint16_t
csum_finish(uint32_t partial)
{