Merge pull request #685 from aliiohs/AddTslSupport
Ftr: add TLS support
No related branches found
No related tags found
Showing
- common/constant/key.go 1 addition, 0 deletionscommon/constant/key.go
- config/config_loader.go 7 additions, 0 deletionsconfig/config_loader.go
- config/service_config.go 1 addition, 0 deletionsconfig/service_config.go
- config/ssl_config.go 43 additions, 0 deletionsconfig/ssl_config.go
- go.mod 1 addition, 4 deletionsgo.mod
- go.sum 2 additions, 88 deletionsgo.sum
- protocol/dubbo/client.go 1 addition, 0 deletionsprotocol/dubbo/client.go
- protocol/dubbo/pool.go 50 additions, 13 deletionsprotocol/dubbo/pool.go
- protocol/dubbo/server.go 28 additions, 4 deletionsprotocol/dubbo/server.go
config/ssl_config.go
0 → 100644
... | ... | @@ -13,7 +13,7 @@ require ( |
github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f // indirect | ||
github.com/creasty/defaults v1.3.0 | ||
github.com/docker/go-connections v0.4.0 // indirect | ||
github.com/dubbogo/getty v1.3.7 | ||
github.com/dubbogo/getty v1.3.9 | ||
github.com/dubbogo/go-zookeeper v1.0.1 | ||
github.com/dubbogo/gost v1.9.0 | ||
github.com/elazarl/go-bindata-assetfs v1.0.0 // indirect | ||
... | ... | @@ -36,8 +36,6 @@ require ( |
github.com/hashicorp/vault/api v1.0.5-0.20191108163347-bdd38fca2cff // indirect | ||
github.com/hashicorp/vault/sdk v0.1.14-0.20191112033314-390e96e22eb2 | ||
github.com/jinzhu/copier v0.0.0-20190625015134-976e0346caa8 | ||
github.com/juju/loggo v0.0.0-20190526231331-6e530bcce5d8 // indirect | ||
github.com/juju/testing v0.0.0-20191001232224-ce9dec17d28b // indirect | ||
github.com/magiconair/properties v1.8.1 | ||
github.com/mitchellh/hashstructure v1.0.0 // indirect | ||
github.com/mitchellh/mapstructure v1.2.3 | ||
... | ... | @@ -58,7 +56,6 @@ require ( |
go.uber.org/zap v1.15.0 | ||
google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64 // indirect | ||
google.golang.org/grpc v1.23.0 | ||
gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce // indirect | ||
gopkg.in/yaml.v2 v2.2.8 | ||
k8s.io/api v0.16.9 | ||
k8s.io/apimachinery v0.16.9 | ||
... | ... |
Please register or sign in to comment