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

@ -24,10 +24,10 @@ enum DomainStrategy {
}
message TransportConfig {
// Type of network that this settings supports.
// Transport protocol name.
string protocol_name = 3;
// Specific settings. Must be of the transports.
// Specific transport protocol settings.
xray.common.serial.TypedMessage settings = 2;
}
@ -43,7 +43,7 @@ message StreamConfig {
// Type of security. Must be a message name of the settings proto.
string security_type = 3;
// Settings for transport security. For now the only choice is TLS.
// Transport security settings. They can be either TLS or REALITY.
repeated xray.common.serial.TypedMessage security_settings = 4;
SocketConfig socket_settings = 6;