You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package kafka
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/Shopify/sarama"
|
|
|
|
|
|
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
|
|
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/tls"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SetupTLSConfig set up the TLS config from config file.
|
|
|
|
func SetupTLSConfig(cfg *sarama.Config) {
|
|
|
|
if config.Config.Kafka.TLS != nil {
|
|
|
|
cfg.Net.TLS.Enable = true
|
|
|
|
cfg.Net.TLS.Config = tls.NewTLSConfig(
|
|
|
|
config.Config.Kafka.TLS.ClientCrt,
|
|
|
|
config.Config.Kafka.TLS.ClientKey,
|
|
|
|
config.Config.Kafka.TLS.CACrt,
|
|
|
|
[]byte(config.Config.Kafka.TLS.ClientKeyPwd),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|