From 197fe15d5abc0e48938547224e96ca47ed212dc7 Mon Sep 17 00:00:00 2001 From: Anonymous-Someneese Date: Sat, 14 Dec 2019 01:22:28 +0800 Subject: [PATCH] Fix code quality --- proxy/http/client.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/proxy/http/client.go b/proxy/http/client.go index 55839150e..740865a76 100644 --- a/proxy/http/client.go +++ b/proxy/http/client.go @@ -24,6 +24,7 @@ import ( "v2ray.com/core/transport/internet" ) +// Client is a inbound handler for HTTP protocol type Client struct { serverPicker protocol.ServerPicker policyManager policy.Manager @@ -92,7 +93,7 @@ func (c *Client) Process(ctx context.Context, link *transport.Link, dialer inter p = c.policyManager.ForLevel(user.Level) } - if err := setUpHttpTunnel(conn, &destination, user); err != nil { + if err := setUpHTTPTunnel(conn, &destination, user); err != nil { return err } @@ -124,8 +125,8 @@ func (c *Client) Process(ctx context.Context, link *transport.Link, dialer inter return nil } -// setUpHttpTunnel will create a socket tunnel via HTTP CONNECT method -func setUpHttpTunnel(writer io.Writer, destination *net.Destination, user *protocol.MemoryUser) error { +// setUpHTTPTunnel will create a socket tunnel via HTTP CONNECT method +func setUpHTTPTunnel(writer io.Writer, destination *net.Destination, user *protocol.MemoryUser) error { var headers []string destNetAddr := destination.NetAddr() headers = append(headers, "CONNECT "+destNetAddr+" HTTP/1.1")