github.com/nyan233/littlerpc@v0.4.6-0.20230316182519-0c8d5c48abaf/core/common/transport/net_config.go (about) 1 package transport 2 3 type NetworkClientConfig struct { 4 ServerAddr string 5 KeepAlive bool 6 TLSPubPem []byte 7 TLSPriPem []byte 8 } 9 10 type NetworkServerConfig struct { 11 Addrs []string 12 KeepAlive bool 13 TLSPubPem []byte 14 }