From 0324ad2da291c296de047321986178cdb5ea3029 Mon Sep 17 00:00:00 2001 From: David Scott Date: Sat, 6 Oct 2018 10:17:51 +0100 Subject: [PATCH] vpnkit: remove the old port forwarding shutdown protocol Before we multiplexed all port forwards over one connection, we had to layer our own custom shutdown protocol on top to work around Hyper-V socket bugs. This is not needed any more because the same work is done within the multiplexing protocol. Note this requires an updated vpnkit-forwarder. Signed-off-by: David Scott --- src/bin/connect.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/connect.ml b/src/bin/connect.ml index 320af7260..6d7cf729e 100644 --- a/src/bin/connect.ml +++ b/src/bin/connect.ml @@ -45,7 +45,7 @@ module Hvsock = struct (* Avoid using `detach` because we don't want to exhaust the thread pool since this will block the main TCP/IP stack. *) module F = - Hvsock_lwt.Flow_shutdown.Make(Host.Time) + Hvsock_lwt.Flow.Make(Host.Time) (Hvsock_lwt.In_main_thread.Make(Host.Main)) (Hvsock.Af_hyperv)