实现websocket基本功能

This commit is contained in:
刘祥超
2020-09-26 19:54:20 +08:00
parent 3d113cf8f5
commit c272658c73
16 changed files with 910 additions and 189 deletions

View File

@@ -84,6 +84,13 @@ func (this *ServerConfig) Init() error {
}
}
if this.ReverseProxyRef != nil {
err := this.ReverseProxyRef.Init()
if err != nil {
return err
}
}
if this.ReverseProxy != nil {
err := this.ReverseProxy.Init()
if err != nil {