utils/conn: typo

This commit is contained in:
fatedier 2016-08-17 10:07:16 +08:00
parent 3d5c3acee0
commit 46ee2f2bc8
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ func ConnectServerByHttpProxy(httpProxy string, serverAddr string) (c *Conn, err
return
}
req, err := http.NewRequest("CONNECT", "https://"+serverAddr, nil)
req, err := http.NewRequest("CONNECT", "http://"+serverAddr, nil)
if err != nil {
return
}