This commit is contained in:
ambitioner 2017-05-26 21:20:54 +08:00
parent d1f5ec083a
commit 1af6276be9
1 changed files with 4 additions and 2 deletions

View File

@ -46,11 +46,13 @@ func NewProxyPlugin(params map[string]string) (p plugin.Plugin, err error) {
return return
} }
p = &Proxy{ proxy := &Proxy{
Server: NewProxyServer(), Server: NewProxyServer(),
Ln: listen, Ln: listen,
} }
return go proxy.Server.Serve(proxy.Ln)
return proxy, nil
} }
func (proxy *Proxy) Name() string { func (proxy *Proxy) Name() string {