We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 949e5f8 commit 546b9bfCopy full SHA for 546b9bf
1 file changed
tunnel/dialer.go
@@ -10,7 +10,6 @@ import (
10
"net"
11
"net/netip"
12
13
- "github.com/celzero/firestack/intra/core"
14
"github.com/celzero/firestack/intra/log"
15
"github.com/celzero/firestack/intra/protect"
16
"github.com/celzero/firestack/intra/settings"
@@ -22,9 +21,9 @@ import (
22
21
23
var _ protect.RDialer = (*gtunnel)(nil)
24
25
-// Handle implements protect.RDialer.
26
-func (h *gtunnel) Handle() uintptr {
27
- return core.Loc(h)
+// ID implements protect.RDialer.
+func (h *gtunnel) ID() string {
+ return "gtunnel"
28
}
29
30
// Dial implements protect.RDialer.
0 commit comments