]> git.ipfire.org Git - thirdparty/ntp.git/commitdiff
[Bug 3411] problem about SIGN(6) packet handling for ntp-4.2.8p10
authorJuergen Perlinger <perlinger@ntp.org>
Fri, 8 Sep 2017 05:54:24 +0000 (07:54 +0200)
committerJuergen Perlinger <perlinger@ntp.org>
Fri, 8 Sep 2017 05:54:24 +0000 (07:54 +0200)
bk: 59b23090ZyhSNFjYHOzi-twEoj6I6A

ChangeLog
include/recvbuff.h

index a1a1cfae45a59975bb12958d206f6c0a48e631b5..9014e20eb730d25584185a98f17664b4ef254ccc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+---
+* [Bug 3411] problem about SIGN(6) packet handling for ntp-4.2.8p10
+  - raised receive buffer size to 1200 <perlinger@ntp.org>
 ---
 (4.2.8p10-win-beta1) 2017/03/21 Released by Harlan Stenn <stenn@ntp.org>
 (4.2.8p10)
index fa2d9ccc41bffcf6c570156b065105b75dc6ed91..42597153eea2a5cdce57321a9cf764a22b5c90ab 100644 (file)
@@ -39,9 +39,10 @@ extern HANDLE        get_recv_buff_event(void);
 /*
  *  the maximum length NTP packet contains the NTP header, one Autokey
  *  request, one Autokey response and the MAC. Assuming certificates don't
- *  get too big, the maximum packet length is set arbitrarily at 1000.
+ *  get too big, the maximum packet length is set arbitrarily at 1200.
+ *  (was 1000, but that bumps on 2048 RSA keys)
  */   
-#define        RX_BUFF_SIZE    1000            /* hail Mary */
+#define        RX_BUFF_SIZE    1200            /* hail Mary */
 
 
 typedef struct recvbuf recvbuf_t;