From 9e2849f9677257c79d0ab7effcfa5c49fae1e585 Mon Sep 17 00:00:00 2001 From: snail007 Date: Wed, 20 Sep 2017 20:43:07 +0800 Subject: [PATCH] Update main.go --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 8b06b9e..6435e08 100644 --- a/main.go +++ b/main.go @@ -220,7 +220,7 @@ func LocalTCPServer(sc *ServerChannel) { userProxy, address, req, err := CheckTCPDeocder(&inConn) if err != nil { if err != io.EOF { - log.Printf("http proxy decode error , ERR:%s", err) + log.Printf("tcp decode error , ERR:%s", err) } return } @@ -233,7 +233,7 @@ func LocalTLSServer(sc *ServerChannel) { userProxy, address, req, err := CheckTCPDeocder(&inConn) if err != nil { if err != io.EOF { - log.Printf("http proxy decode error , ERR:%s", err) + log.Printf("tls decode error , ERR:%s", err) } return }