feat: add redirect darwin support

This commit is contained in:
Christian Groschupp
2024-04-15 21:41:54 +02:00
parent 25dcf536c6
commit 7bf0537243
4 changed files with 76 additions and 3 deletions

View File

@ -0,0 +1,9 @@
package tcp
import (
"syscall"
)
func (l *redirectListener) control(network, address string, c syscall.RawConn) error {
return nil
}

View File

@ -1,4 +1,4 @@
//go:build !linux
//go:build !linux && !darwin
package tcp