From: Juergen Perlinger Date: Fri, 8 Sep 2017 05:54:24 +0000 (+0200) Subject: [Bug 3411] problem about SIGN(6) packet handling for ntp-4.2.8p10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b450cf9b9b984a9cfd189efc3a6be1e30d9e0362;p=thirdparty%2Fntp.git [Bug 3411] problem about SIGN(6) packet handling for ntp-4.2.8p10 bk: 59b23090ZyhSNFjYHOzi-twEoj6I6A --- diff --git a/ChangeLog b/ChangeLog index a1a1cfae4..9014e20eb 100644 --- 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 + --- (4.2.8p10-win-beta1) 2017/03/21 Released by Harlan Stenn (4.2.8p10) diff --git a/include/recvbuff.h b/include/recvbuff.h index fa2d9ccc4..42597153e 100644 --- a/include/recvbuff.h +++ b/include/recvbuff.h @@ -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;