From f420366f54cf6582a9d5134157dc8389bb4bb3ec Mon Sep 17 00:00:00 2001 From: Viktor Liu Date: Mon, 17 Aug 2026 20:34:40 +0200 Subject: [PATCH] Fix the remaining turn wording in the packet forward error --- client/iface/wgproxy/ebpf/proxy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/iface/wgproxy/ebpf/proxy.go b/client/iface/wgproxy/ebpf/proxy.go index 82809c0a7..91c741c0d 100644 --- a/client/iface/wgproxy/ebpf/proxy.go +++ b/client/iface/wgproxy/ebpf/proxy.go @@ -197,7 +197,7 @@ func (p *WGEBPFProxy) readAndForwardPacket(buf []byte) error { } if _, err := conn.Write(buf[:n]); err != nil { - return fmt.Errorf("failed to forward local WG packet (%d) to remote turn conn: %w", addr.Port, err) + return fmt.Errorf("forward local WG packet (%d) to remote relayed conn: %w", addr.Port, err) } return nil }