| 1234567891011121314151617181920212223 |
- 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
- }
- return nil
- }
|