From cdb0debcb09b98f4b7ddcf5e364112a87fa89820 Mon Sep 17 00:00:00 2001 From: Darien Raymond Date: Wed, 2 Nov 2016 16:38:09 +0100 Subject: [PATCH] register shadowsocks client factory --- proxy/shadowsocks/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/shadowsocks/init.go b/proxy/shadowsocks/init.go index 0d5f92a8f..17cf75d5a 100644 --- a/proxy/shadowsocks/init.go +++ b/proxy/shadowsocks/init.go @@ -7,6 +7,6 @@ import ( func init() { // Must happen after config is initialized - + registry.MustRegisterOutboundHandlerCreator(loader.GetType(new(ClientConfig)), new(ClientFactory)) registry.MustRegisterInboundHandlerCreator(loader.GetType(new(ServerConfig)), new(ServerFactory)) }