Add more lint

This commit is contained in:
世界 2022-06-29 12:26:13 +08:00
parent beeeba3388
commit 849d16c37b
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
13 changed files with 118 additions and 64 deletions

10
protocol/http/link.go Normal file
View file

@ -0,0 +1,10 @@
package http
import (
"bufio"
"net/http"
_ "unsafe" // for linkname
)
//go:linkname ReadRequest net/http.readRequest
func ReadRequest(b *bufio.Reader) (req *http.Request, err error)

View file

@ -1,14 +1,12 @@
package http
import (
"bufio"
"context"
"encoding/base64"
"net"
"net/http"
"strings"
"time"
_ "unsafe"
"github.com/sagernet/sing/common"
"github.com/sagernet/sing/common/auth"
@ -131,9 +129,6 @@ func HandleRequest(ctx context.Context, request *http.Request, conn net.Conn, au
}
}
//go:linkname ReadRequest net/http.readRequest
func ReadRequest(b *bufio.Reader) (req *http.Request, err error)
func removeHopByHopHeaders(header http.Header) {
// Strip hop-by-hop header based on RFC:
// http://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html#sec13.5.1