Relax the restriction on routines from the config (#1531)

This commit is contained in:
Nate Brown
2025-11-19 14:10:11 -05:00
committed by GitHub
parent 297767b2e3
commit 7aff313a17
20 changed files with 80 additions and 0 deletions

View File

@@ -72,6 +72,10 @@ func NewListener(l *logrus.Logger, ip netip.Addr, port int, multi bool, batch in
return &StdConn{sysFd: fd, isV4: ip.Is4(), l: l, batch: batch}, err
}
func (u *StdConn) SupportsMultipleReaders() bool {
return true
}
func (u *StdConn) Rebind() error {
return nil
}