mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
758 B
40 lines
758 B
package proxyman
|
|
|
|
func (s *AllocationStrategy) GetConcurrencyValue() uint32 {
|
|
if s == nil || s.Concurrency == nil {
|
|
return 3
|
|
}
|
|
return s.Concurrency.Value
|
|
}
|
|
|
|
func (s *AllocationStrategy) GetRefreshValue() uint32 {
|
|
if s == nil || s.Refresh == nil {
|
|
return 5
|
|
}
|
|
return s.Refresh.Value
|
|
}
|
|
|
|
func (c *ReceiverConfig) GetEffectiveSniffingSettings() *SniffingConfig {
|
|
if c.SniffingSettings != nil {
|
|
return c.SniffingSettings
|
|
}
|
|
|
|
if len(c.DomainOverride) > 0 {
|
|
var p []string
|
|
for _, kd := range c.DomainOverride {
|
|
switch kd {
|
|
case KnownProtocols_HTTP:
|
|
p = append(p, "http")
|
|
case KnownProtocols_TLS:
|
|
p = append(p, "tls")
|
|
}
|
|
}
|
|
return &SniffingConfig{
|
|
Enabled: true,
|
|
DestinationOverride: p,
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|