To compatible with older Go version on some cloud environment , such as Google App Engine using 1.16
13 lines
187 B
Go
13 lines
187 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package gost
|
|
|
|
func setSocketMark(fd int, value int) (e error) {
|
|
return nil
|
|
}
|
|
|
|
func setSocketInterface(fd int, value string) (e error) {
|
|
return nil
|
|
}
|