Chore: sync necessary changes from premium

This commit is contained in:
Dreamacro
2020-09-21 22:22:07 +08:00
parent 10f9571c9e
commit 8766287e72
3 changed files with 8 additions and 9 deletions

View File

@ -9,14 +9,13 @@ import (
"strings"
"time"
adapters "github.com/Dreamacro/clash/adapters/inbound"
"github.com/Dreamacro/clash/adapters/inbound"
"github.com/Dreamacro/clash/common/pool"
"github.com/Dreamacro/clash/component/resolver"
C "github.com/Dreamacro/clash/constant"
"github.com/Dreamacro/clash/common/pool"
)
func handleHTTP(request *adapters.HTTPAdapter, outbound net.Conn) {
func handleHTTP(request *inbound.HTTPAdapter, outbound net.Conn) {
req := request.R
host := req.Host
@ -28,7 +27,7 @@ func handleHTTP(request *adapters.HTTPAdapter, outbound net.Conn) {
req.Header.Set("Connection", "close")
req.RequestURI = ""
adapters.RemoveHopByHopHeaders(req.Header)
inbound.RemoveHopByHopHeaders(req.Header)
err := req.Write(outbound)
if err != nil {
break
@ -39,7 +38,7 @@ func handleHTTP(request *adapters.HTTPAdapter, outbound net.Conn) {
if err != nil {
break
}
adapters.RemoveHopByHopHeaders(resp.Header)
inbound.RemoveHopByHopHeaders(resp.Header)
if resp.StatusCode == http.StatusContinue {
err = resp.Write(request)
@ -128,7 +127,7 @@ func handleUDPToLocal(packet C.UDPPacket, pc net.PacketConn, key string, fAddr n
}
}
func handleSocket(request *adapters.SocketAdapter, outbound net.Conn) {
func handleSocket(request C.ServerAdapter, outbound net.Conn) {
relay(request, outbound)
}