mirror of
https://github.com/SagerNet/sing-shadowsocks.git
synced 2025-04-04 20:37:44 +03:00
9 lines
198 B
Go
9 lines
198 B
Go
package shadowaead_2022
|
|
|
|
type MethodOption func(*Method)
|
|
|
|
func MethodOptionEncryptedProtocolExtension() MethodOption {
|
|
return func(method *Method) {
|
|
method.encryptedProtocolExtension = true
|
|
}
|
|
}
|