add missing proxy field mappings

This commit is contained in:
EUForest 2025-11-02 16:38:19 +08:00 committed by GitHub
parent 2605d22f8e
commit 2fd119d697
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -131,6 +131,20 @@ func (adapter *Adapter) Proxies(servers []*node.Node) ([]Proxy, error) {
ReduceRtt: protocol.ReduceRtt, ReduceRtt: protocol.ReduceRtt,
UDPRelayMode: protocol.UDPRelayMode, UDPRelayMode: protocol.UDPRelayMode,
CongestionController: protocol.CongestionController, CongestionController: protocol.CongestionController,
UpMbps: protocol.UpMbps,
DownMbps: protocol.DownMbps,
PaddingScheme: protocol.PaddingScheme,
Multiplex: protocol.Multiplex,
XhttpMode: protocol.XhttpMode,
XhttpExtra: protocol.XhttpExtra,
Encryption: protocol.Encryption,
EncryptionMode: protocol.EncryptionMode,
EncryptionRtt: protocol.EncryptionRtt,
EncryptionTicket: protocol.EncryptionTicket,
EncryptionServerPadding: protocol.EncryptionServerPadding,
EncryptionPrivateKey: protocol.EncryptionPrivateKey,
EncryptionClientPadding: protocol.EncryptionClientPadding,
EncryptionPassword: protocol.EncryptionPassword,
}) })
} }
} }