sing-shadowsocks/shadowaead_2022/protocol_option.go
2022-06-15 16:19:52 +08:00

9 lines
198 B
Go

package shadowaead_2022
type MethodOption func(*Method)
func MethodOptionEncryptedProtocolExtension() MethodOption {
return func(method *Method) {
method.encryptedProtocolExtension = true
}
}