mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-14 12:43:18 +00:00
Chore: Fix some comments (#3979)
This commit is contained in:
parent
6877ca5201
commit
b98f29bf3e
|
@ -152,9 +152,9 @@ type TransportConfig struct {
|
||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
// Type of network that this settings supports.
|
// Transport protocol name.
|
||||||
ProtocolName string `protobuf:"bytes,3,opt,name=protocol_name,json=protocolName,proto3" json:"protocol_name,omitempty"`
|
ProtocolName string `protobuf:"bytes,3,opt,name=protocol_name,json=protocolName,proto3" json:"protocol_name,omitempty"`
|
||||||
// Specific settings. Must be of the transports.
|
// Specific transport protocol settings.
|
||||||
Settings *serial.TypedMessage `protobuf:"bytes,2,opt,name=settings,proto3" json:"settings,omitempty"`
|
Settings *serial.TypedMessage `protobuf:"bytes,2,opt,name=settings,proto3" json:"settings,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -214,7 +214,7 @@ type StreamConfig struct {
|
||||||
TransportSettings []*TransportConfig `protobuf:"bytes,2,rep,name=transport_settings,json=transportSettings,proto3" json:"transport_settings,omitempty"`
|
TransportSettings []*TransportConfig `protobuf:"bytes,2,rep,name=transport_settings,json=transportSettings,proto3" json:"transport_settings,omitempty"`
|
||||||
// Type of security. Must be a message name of the settings proto.
|
// Type of security. Must be a message name of the settings proto.
|
||||||
SecurityType string `protobuf:"bytes,3,opt,name=security_type,json=securityType,proto3" json:"security_type,omitempty"`
|
SecurityType string `protobuf:"bytes,3,opt,name=security_type,json=securityType,proto3" json:"security_type,omitempty"`
|
||||||
// Settings for transport security. For now the only choice is TLS.
|
// Transport security settings. They can be either TLS or REALITY.
|
||||||
SecuritySettings []*serial.TypedMessage `protobuf:"bytes,4,rep,name=security_settings,json=securitySettings,proto3" json:"security_settings,omitempty"`
|
SecuritySettings []*serial.TypedMessage `protobuf:"bytes,4,rep,name=security_settings,json=securitySettings,proto3" json:"security_settings,omitempty"`
|
||||||
SocketSettings *SocketConfig `protobuf:"bytes,6,opt,name=socket_settings,json=socketSettings,proto3" json:"socket_settings,omitempty"`
|
SocketSettings *SocketConfig `protobuf:"bytes,6,opt,name=socket_settings,json=socketSettings,proto3" json:"socket_settings,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,10 +24,10 @@ enum DomainStrategy {
|
||||||
}
|
}
|
||||||
|
|
||||||
message TransportConfig {
|
message TransportConfig {
|
||||||
// Type of network that this settings supports.
|
// Transport protocol name.
|
||||||
string protocol_name = 3;
|
string protocol_name = 3;
|
||||||
|
|
||||||
// Specific settings. Must be of the transports.
|
// Specific transport protocol settings.
|
||||||
xray.common.serial.TypedMessage settings = 2;
|
xray.common.serial.TypedMessage settings = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@ message StreamConfig {
|
||||||
// Type of security. Must be a message name of the settings proto.
|
// Type of security. Must be a message name of the settings proto.
|
||||||
string security_type = 3;
|
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;
|
repeated xray.common.serial.TypedMessage security_settings = 4;
|
||||||
|
|
||||||
SocketConfig socket_settings = 6;
|
SocketConfig socket_settings = 6;
|
||||||
|
|
|
@ -342,7 +342,9 @@ func (x *ConnectionReuse) GetEnable() bool {
|
||||||
return false
|
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 {
|
type EncryptionSeed struct {
|
||||||
state protoimpl.MessageState
|
state protoimpl.MessageState
|
||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
|
|
|
@ -42,7 +42,9 @@ message ConnectionReuse {
|
||||||
bool enable = 1;
|
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 {
|
message EncryptionSeed {
|
||||||
string seed = 1;
|
string seed = 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue