Add older style build comment

To compatible with older Go version on some cloud environment , such as Google App Engine using 1.16
This commit is contained in:
Kebin Liu 2022-06-08 11:42:03 +08:00 committed by GitHub
parent 0247b941ac
commit 9ce9d34fe5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,5 @@
//go:build !linux
// +build !linux
package gost
@ -8,4 +9,4 @@ func setSocketMark(fd int, value int) (e error) {
func setSocketInterface(fd int, value string) (e error) {
return nil
}
}