Merge pull request #26 from cgroschupp/feature/darwin_redirect

feat: add redirect darwin support
This commit is contained in:
ginuerzh
2024-04-24 23:09:07 +08:00
committed by GitHub
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