From 7164af23ae76f023bf17bcbd51115e94a26d2d99 Mon Sep 17 00:00:00 2001 From: Keith Winstein Date: Fri, 19 Aug 2011 05:04:56 -0400 Subject: [PATCH] Shorter HEADER_LEN was too short --- networktransport.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/networktransport.hpp b/networktransport.hpp index 01b5e78..961e2e1 100644 --- a/networktransport.hpp +++ b/networktransport.hpp @@ -81,7 +81,7 @@ namespace Network { static const int ACK_INTERVAL = 1000; /* ms between empty acks */ static const int ACK_DELAY = 10; /* ms before delayed ack */ static const int SEND_MINDELAY = 50; /* ms to collect all input */ - static const int HEADER_LEN = 74; + static const int HEADER_LEN = 100; /* helper methods for tick() */ unsigned int send_interval( void );