Hunter0x7c7
2022-08-11 a82f9cb69f63aaeba40c024960deda7d75b9fece
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
}