From c25d77597d9f4d973909c92e1fbb62edeff950a9 Mon Sep 17 00:00:00 2001 From: Owen Date: Mon, 28 Jul 2025 22:49:45 -0700 Subject: [PATCH] Add warning Former-commit-id: 6420434821f59ce306ffe91dc96224a33e785b2f --- main.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.go b/main.go index d6d94a2..3abfb1a 100644 --- a/main.go +++ b/main.go @@ -277,6 +277,10 @@ func runOlmMainWithArgs(ctx context.Context, args []string) { logger.Debug("Parameters: endpoint='%s', id='%s', secret='%s'", endpoint, id, secret) logger.Debug("HTTP enabled: %v, HTTP addr: %s", enableHTTP, httpAddr) + if doHolepunch { + logger.Warn("Hole punching is enabled. This is EXPERIMENTAL and may not work in all environments.") + } + // Handle test mode if testMode { if testTarget == "" {