// Timeout contains limits for connection timeout.
typeTimeoutstruct{
// Timeout for handshake phase in a connection.
Handshaketime.Duration
// Timeout for connection being idle, i.e., there is no egress or ingress traffic in this connection.
ConnectionIdletime.Duration
// Timeout for an uplink only connection, i.e., the downlink of the connection has been closed.
UplinkOnlytime.Duration
// Timeout for an downlink only connection, i.e., the uplink of the connection has been closed.
DownlinkOnlytime.Duration
}
// Stats contains settings for stats counters.
typeStatsstruct{
// Whether or not to enable stat counter for user uplink traffic.
UserUplinkbool
// Whether or not to enable stat counter for user downlink traffic.
UserDownlinkbool
}
// Buffer contains settings for internal buffer.
typeBufferstruct{
// Size of buffer per connection, in bytes. -1 for unlimited buffer.
PerConnectionint32
}
// SystemStats contains stat policy settings on system level.
typeSystemStatsstruct{
// Whether or not to enable stat counter for uplink traffic in inbound handlers.
InboundUplinkbool
// Whether or not to enable stat counter for downlink traffic in inbound handlers.
InboundDownlinkbool
// Whether or not to enable stat counter for uplink traffic in outbound handlers.
OutboundUplinkbool
// Whether or not to enable stat counter for downlink traffic in outbound handlers.
OutboundDownlinkbool
}
// System contains policy settings at system level.
typeSystemstruct{
StatsSystemStats
BufferBuffer
}
// Session is session based settings for controlling Xray requests. It contains various settings (or limits) that may differ for different users in the context.
typeSessionstruct{
TimeoutsTimeout// Timeout settings
StatsStats
BufferBuffer
}
// Manager is a feature that provides Policy for the given user by its id or level.
//
// xray:api:stable
typeManagerinterface{
features.Feature
// ForLevel returns the Session policy for the given user level.
ForLevel(leveluint32)Session
// ForSystem returns the System policy for Xray system.
ForSystem()System
}
// ManagerType returns the type of Manager interface. Can be used to implement common.HasType.
//
// xray:api:stable
funcManagerType()interface{}{
return(*Manager)(nil)
}
vardefaultBufferSizeint32
funcinit(){
constkey="xray.ray.buffer.size"
constdefaultValue=-17
size:=platform.EnvFlag{
Name:key,
AltName:platform.NormalizeEnvName(key),
}.GetValueAsInt(defaultValue)
switchsize{
case0:
defaultBufferSize=-1// For pipe to use unlimited size
casedefaultValue:// Env flag not defined. Use default values per CPU-arch.
switchruntime.GOARCH{
case"arm","mips","mipsle":
defaultBufferSize=0
case"arm64","mips64","mips64le":
defaultBufferSize=4*1024// 4k cache for low-end devices
default:
defaultBufferSize=512*1024
}
default:
defaultBufferSize=int32(size)*1024*1024
}
}
funcdefaultBufferPolicy()Buffer{
returnBuffer{
PerConnection:defaultBufferSize,
}
}
// SessionDefault returns the Policy when user is not specified.
funcSessionDefault()Session{
returnSession{
Timeouts:Timeout{
// Align Handshake timeout with nginx client_header_timeout
// So that this value will not indicate server identity