]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix #343: Fail to build --with-libnghttp2 with error: 'SSIZE_MAX'
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Tue, 10 Nov 2020 14:31:20 +0000 (15:31 +0100)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Tue, 10 Nov 2020 14:31:20 +0000 (15:31 +0100)
  undeclared.

doc/Changelog
services/listen_dnsport.c

index c9e871011c17ba08dd91d0c5b6c7cce2b31ddd2c..47fcd9178e75f97f21ada41d502cd6b892075c11 100644 (file)
@@ -1,6 +1,8 @@
 10 November 2020: Wouter
        - Fix #341: fixing a possible memory leak.
        - Fix memory leak after fix for possible memory leak failure.
+       - Fix #343: Fail to build --with-libnghttp2 with error: 'SSIZE_MAX'
+         undeclared.
 
 27 October 2020: Wouter
        - In man page note that tls-cert-bundle is read before permission
index 15ee6a38983403c82f5ac972632e85391674ed89..10a7aec60df2612f0cbb6a70e9b27c264c317133 100644 (file)
@@ -43,6 +43,7 @@
 #  include <sys/types.h>
 #endif
 #include <sys/time.h>
+#include <limits.h>
 #ifdef USE_TCP_FASTOPEN
 #include <netinet/tcp.h>
 #endif