1 Star 0 Fork 0

zhangjungang/beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
config.go 520 Bytes
一键复制 编辑 原始数据 按行查看 历史
package tls
import (
"github.com/elastic/beats/packetbeat/config"
"github.com/elastic/beats/packetbeat/protos"
)
type tlsConfig struct {
config.ProtocolCommon `config:",inline"`
SendCertificates bool `config:"send_certificates"`
IncludeRawCertificates bool `config:"include_raw_certificates"`
}
var (
defaultConfig = tlsConfig{
ProtocolCommon: config.ProtocolCommon{
TransactionTimeout: protos.DefaultTransactionExpiration,
},
SendCertificates: true,
IncludeRawCertificates: false,
}
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangjungang/beats.git
git@gitee.com:zhangjungang/beats.git
zhangjungang
beats
beats
v6.2.1

搜索帮助