Chore: Fix some comments (#3979)

This commit is contained in:
zonescape 2024-11-07 19:00:04 +03:00 committed by GitHub
parent 6877ca5201
commit b98f29bf3e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 12 additions and 8 deletions

View file

@ -342,7 +342,9 @@ func (x *ConnectionReuse) GetEnable() bool {
return false
}
// Maximum Transmission Unit, in bytes.
// Pre-shared secret between client and server. It is used for traffic obfuscation.
// Note that if seed is absent in the config, the traffic will still be obfuscated,
// but by a predefined algorithm.
type EncryptionSeed struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache

View file

@ -42,7 +42,9 @@ message ConnectionReuse {
bool enable = 1;
}
// Maximum Transmission Unit, in bytes.
// Pre-shared secret between client and server. It is used for traffic obfuscation.
// Note that if seed is absent in the config, the traffic will still be obfuscated,
// but by a predefined algorithm.
message EncryptionSeed {
string seed = 1;
}