Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions transport/internet/config.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions transport/internet/config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand All @@ -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;
Expand Down
4 changes: 3 additions & 1 deletion transport/internet/kcp/config.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion transport/internet/kcp/config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down