gost_software/sockopts_other.go
IndexDoge 8404317ada feat: add bind interface
fix: clone route without interface and mark config
2022-04-17 17:12:55 +08:00

11 lines
169 B
Go

//go:build !linux
package gost
func setSocketMark(fd int, value int) (e error) {
return nil
}
func setSocketInterface(fd int, value string) (e error) {
return nil
}