代码拉取完成,页面将自动刷新
package socket
import "time"
// Config is the configuration specific to the socket MetricSet.
type Config struct {
ReverseLookup *ReverseLookupConfig `config:"socket.reverse_lookup"`
}
// ReverseLookupConfig contains the configuration that controls the reverse
// DNS lookup behavior.
type ReverseLookupConfig struct {
Enabled *bool `config:"enabled"`
SuccessTTL time.Duration `config:"success_ttl"`
FailureTTL time.Duration `config:"failure_ttl"`
}
// IsEnabled returns true if reverse_lookup is defined and 'enabled' is either
// not set or set to true.
func (c *ReverseLookupConfig) IsEnabled() bool {
return c != nil && (c.Enabled == nil || *c.Enabled)
}
const (
defSuccessTTL = 60 * time.Second
defFailureTTL = 60 * time.Second
)
var defaultConfig = Config{
ReverseLookup: nil,
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。