This commit is contained in:
JackDoan
2026-04-15 13:22:07 -05:00
parent 6592a07b51
commit 191f7823bf

View File

@@ -6,7 +6,6 @@ import (
"fmt"
"io"
"net/netip"
"os"
"sync"
"sync/atomic"
"time"
@@ -296,7 +295,6 @@ func (f *Interface) listenOut(i int) {
}
f.l.Debugf("underlay reader %v is done", i)
f.wg.Done()
}
func (f *Interface) listenIn(reader io.ReadWriteCloser, i int) {
@@ -321,7 +319,6 @@ func (f *Interface) listenIn(reader io.ReadWriteCloser, i int) {
}
f.l.Debugf("overlay reader %v is done", i)
f.wg.Done()
}
func (f *Interface) RegisterConfigChangeCallbacks(c *config.C) {