2017-01-14 18:17:06 -05:00
|
|
|
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
|
|
|
|
}
|
2018-07-16 07:47:00 -04:00
|
|
|
|
|
|
|
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{
|
2018-07-20 07:09:42 -04:00
|
|
|
Enabled: true,
|
|
|
|
DestinationOverride: p,
|
2018-07-16 07:47:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|