From 17b2c1a23bb2333d04aa19244b54e4f3e7d021f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toke=20H=C3=B8iland-J=C3=B8rgensen?= Date: Mon, 4 Jun 2018 01:20:49 +0200 Subject: [PATCH] unbound: Enable TCP fast open MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This can reduce the lookup times for TCP lookups with a full RTT for supported servers. Signed-off-by: Toke Høiland-Jørgensen --- net/unbound/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net/unbound/Makefile b/net/unbound/Makefile index a846ca699..cc8edc45b 100644 --- a/net/unbound/Makefile +++ b/net/unbound/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=unbound PKG_VERSION:=1.7.1 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_LICENSE:=BSD-3-Clause PKG_LICENSE_FILES:=LICENSE @@ -113,6 +113,8 @@ CONFIGURE_ARGS += \ --disable-dsa \ --disable-gost \ --enable-allsymbols \ + --enable-tfo-client \ + --enable-tfo-server \ --with-libexpat="$(STAGING_DIR)/usr" \ --with-ssl="$(STAGING_DIR)/usr" \ --with-pidfile=/var/run/unbound.pid \