From e2ebf1fedf7240a160b488c93ca9d62431d69624 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 8 Feb 2015 23:53:41 +0100 Subject: [PATCH] Fix multi-timeouts also in tungre. --- tungre.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tungre.cpp b/tungre.cpp index 55bd973..fb39982 100644 --- a/tungre.cpp +++ b/tungre.cpp @@ -40,6 +40,7 @@ int main(int argc, char **argv) timeval tv = { 1, 0 }; FD_SET(gre.fd(), &fds); FD_SET(tun.fd(), &fds); + tun_reorderer.possibly_adjust_tv(&tv); tun_pacer.possibly_adjust_tv(&tv); int ret = select(1024, &fds, NULL, NULL, &tv); if (ret == -1) { -- 2.39.2