summaryrefslogtreecommitdiff
path: root/client/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/main.go')
-rw-r--r--client/main.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/main.go b/client/main.go
index daf6ce4..80ebb35 100644
--- a/client/main.go
+++ b/client/main.go
@@ -51,6 +51,8 @@ func main() {
logger.Fatalf("cannot get dialer: %v", err)
}
+ // TODO make this configurable via a Config struct
+ // TODO make sure we're disabling the crypto options for KCP
if os.Getenv("KCP") == "1" {
dialer.DialFunc = func(network, address string) (net.Conn, error) {
return kcp.Dial(address)