pull/336/head
ambitioner 8 years ago
parent d1f5ec083a
commit 1af6276be9

@ -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 {

Loading…
Cancel
Save