From 9c0205614b80ed14cb5435f8f03ecdcdf10e54d1 Mon Sep 17 00:00:00 2001 From: Davide De Rosa Date: Mon, 25 Mar 2019 10:09:09 +0100 Subject: [PATCH] Disable rebind-on-float until a solid fix Mitigates #75 --- TunnelKit/Sources/Core/SessionProxy.swift | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/TunnelKit/Sources/Core/SessionProxy.swift b/TunnelKit/Sources/Core/SessionProxy.swift index 40140f1..45357c6 100644 --- a/TunnelKit/Sources/Core/SessionProxy.swift +++ b/TunnelKit/Sources/Core/SessionProxy.swift @@ -260,7 +260,10 @@ public class SessionProxy { - Returns: `true` if supports link rebinding. */ public func canRebindLink() -> Bool { - return (pushReply?.peerId != nil) +// return (pushReply?.peerId != nil) + + // XXX: floating is currently unreliable + return false } /**