]> git.gsnw.org Git - fping.git/commitdiff
increase SEQMAP_MAX to 65355
authorDavid Schweikert <david@schweikert.ch>
Thu, 25 Jul 2013 20:29:56 +0000 (22:29 +0200)
committerDavid Schweikert <david@schweikert.ch>
Thu, 25 Jul 2013 20:29:56 +0000 (22:29 +0200)
src/seqmap.c
src/seqmap.h

index 2e6c030f627bdccc3275b35257a6853d7c2c1be0..e64cbd264a1d797f349911870c8776231feb6767 100644 (file)
@@ -44,7 +44,7 @@
 
 /* description of the data structure used:
  *
- * - we assume that no more than SEQMAP_MAXSEQ (65000) pings are sent in
+ * - we assume that no more than SEQMAP_MAXSEQ (65535) pings are sent in
  *   the timeout interval (SEQMAP_TIMEOUT_IN_S)
  * - we store the values in an array with SEQMAP_MAXSEQ elements
  * - current sequence number % SEQMAP_MAXSEQ gives the current index
index f85050d55b89659fbe9705c5190de0db96a82dfa..cafde4d080cac7eec1b35961c003f0897fbe2979 100644 (file)
@@ -11,7 +11,7 @@ typedef struct seqmap_value
 
 } SEQMAP_VALUE;
 
-#define SEQMAP_MAXSEQ 65000
+#define SEQMAP_MAXSEQ 65535
 
 void seqmap_init();
 unsigned int seqmap_add(unsigned int host_nr, unsigned int ping_count, struct timeval *now);