Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VLESS over http/2 模式下,客户端运行一段时间后就无法正常工作 #289

Closed
elvisw opened this issue Feb 20, 2021 · 31 comments · Fixed by #300
Closed

VLESS over http/2 模式下,客户端运行一段时间后就无法正常工作 #289

elvisw opened this issue Feb 20, 2021 · 31 comments · Fixed by #300

Comments

@elvisw
Copy link

elvisw commented Feb 20, 2021

整个配置思路参考了 https://github.com/XTLS/Xray-examples/tree/main/VLESS-H2C-Caddy2
服务端是通过Caddy2反向代理了VLESS over h2c,客户端为VLESS over http/2。客户端启动后正常运行一段时间后(大约在1小时以内),就无法正常工作(无法通过xray访问网站),并输出日志2021/02/20 10:19:13 [Warning] [4163186524] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed。必须重启客户端后才能暂时恢复正常

xray服务端配置
{
    "log": {
        "access": "/var/log/xray/access.log",
        "error": "/var/log/xray/error.log",
        "loglevel": "debug"
    },
    "inbounds": [
        {
            "port": 12345,
            "protocol": "vless",
            "settings": {
                "clients": [
                    {
                        "id": "uuid",
                        "email": "xx@xxxx.com"
                    }
                ],
                "decryption": "none"
            },
            "streamSettings": {
                "network": "http",
                "security": "none",
                "httpSettings": {
                    "path": "/path",
                    "host": [
                        "host"
                    ]
                }
            }
        }
    ],
    "outbounds": [
        {
            "protocol": "freedom",
            "settings": {
                "domainStrategy": "UseIPv4"
            }
        },
        {
            "protocol": "blackhole",
            "settings": {},
            "tag": "blocked"
        }
    ],
    "routing": {
        "rules": [
            {
                "type": "field",
                "ip": [
                    "geoip:private"
                ],
                "outboundTag": "blocked"
            }
        ]
    }
}

服务端使用了Caddy2反向代理到443端口(https),

xray客户端配置
[[inbounds]]
listen = "127.0.0.1"
port = 7071
protocol = "socks"

[inbounds.settings]
udp = true

[inbounds.sniffing]
destOverride = ["http", "tls"]
enabled = true

[[inbounds]]
listen = "127.0.0.1"
port = 7072
protocol = "http"

[inbounds.settings]
allowTransparent = false
userLevel = 0

[inbounds.sniffing]
destOverride = ["http", "tls"]
enabled = true

[[inbounds]]
listen = "127.0.0.1"
port = 10221
protocol = "dokodemo-door"
tag = "ibp"

[inbounds.settings]
address = "xxxxx.com"
network = "tcp"
port = 443

[[outbounds]]
protocol = "vless"
tag = "proxy"

[outbounds.settings]
[[outbounds.settings.vnext]]
address = "127.0.0.1"
port = 10221

[[outbounds.settings.vnext.users]]
id = "uuid"
encryption = "none"

[outbounds.streamSettings]
network = "http"
security = "tls"

[outbounds.streamSettings.tlsSettings]
allowInsecure = false
serverName = "xxxxx.com"

[outbounds.streamSettings.httpSettings]
path = "/path/"
host = ["xxxxx.com"]

[[outbounds]]
protocol = "http"
tag = "localproxy"

[outbounds.settings]
[[outbounds.settings.servers]]
address = "proxy2.xxxx.xxxx"
port = 8080

[log]
# loglevel = "debug"
# access = "./access.log"
# error = "./error.log"

[routing]
domainStrategy = "IPIfNonMatch"

[[routing.rules]]
inboundTag = ["ibp"]
outboundTag = "localproxy"
type = "field"

由于测试并输出日志时客户端在内网,在streamSettings是ws或者h2时,v2ray不支持前置代理,因此使用了dokodemo-door进行了桥接。但是可以确定,在外网环境客户端直连,一样会出这个问题。

服务端日志
2021/02/19 21:58:17 [Debug] app/log: Logger started
2021/02/19 21:58:17 [Debug] app/proxyman/inbound: creating stream worker on 0.0.0.0:12345
2021/02/19 21:58:17 [Warning] core: Xray 1.3.0 started
.....
2021/02/19 21:58:47 [Info] [3923791669] proxy/vless/inbound: firstLen = 183
2021/02/19 21:58:47 [Info] [3923791669] proxy/vless/inbound: received request for tcp:dc.services.visualstudio.com:443
2021/02/19 21:58:47 [Info] [3923791669] app/dispatcher: default route for tcp:dc.services.visualstudio.com:443
2021/02/19 21:58:47 [Info] [3923791669] proxy/freedom: opening connection to tcp:dc.services.visualstudio.com:443
2021/02/19 21:58:47 [Info] [3923791669] proxy/freedom: dialing to to tcp:13.86.218.255:443
2021/02/19 21:58:47 [Info] [3923791669] transport/internet/tcp: dialing TCP to tcp:13.86.218.255:443
2021/02/19 21:58:47 [Info] [1174341494] proxy/freedom: dialing to to tcp:13.86.218.255:443
2021/02/19 21:58:47 [Info] [1174341494] transport/internet/tcp: dialing TCP to tcp:13.86.218.255:443
2021/02/19 21:58:47 [Info] [3786443536] proxy/freedom: dialing to to tcp:13.86.218.255:443
2021/02/19 21:58:47 [Info] [3786443536] transport/internet/tcp: dialing TCP to tcp:13.86.218.255:443
2021/02/19 21:58:47 [Info] [2407104745] proxy/freedom: dialing to to tcp:13.86.218.255:443
2021/02/19 21:58:47 [Info] [2407104745] transport/internet/tcp: dialing TCP to tcp:13.86.218.255:443
2021/02/19 21:58:47 [Info] [1963521535] proxy/freedom: dialing to to tcp:13.86.218.255:443
2021/02/19 21:58:47 [Info] [1963521535] transport/internet/tcp: dialing TCP to tcp:13.86.218.255:443
2021/02/19 21:59:23 [Info] [3923791669] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 7; CANCEL
2021/02/19 21:59:23 [Info] [1174341494] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 5; CANCEL
2021/02/19 21:59:23 [Info] [2407104745] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 3; CANCEL
2021/02/19 21:59:23 [Info] [3786443536] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 11; CANCEL
2021/02/19 21:59:23 [Info] [1963521535] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 9; CANCEL
2021/02/19 21:59:23 [Info] [3923791669] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process request > io: read/write on closed pipe
2021/02/19 21:59:23 [Info] [1174341494] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/02/19 21:59:23 [Info] [2407104745] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process request > io: read/write on closed pipe
2021/02/19 21:59:23 [Info] [3786443536] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process request > io: read/write on closed pipe
2021/02/19 21:59:23 [Info] [1963521535] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process request > io: read/write on closed pipe
2021/02/19 22:02:53 [Info] [3778768853] proxy/vless/inbound: firstLen = 535
2021/02/19 22:02:53 [Info] [3778768853] proxy/vless/inbound: received request for tcp:sspanel.net:80
2021/02/19 22:02:53 [Info] [3064443272] proxy/vless/inbound: firstLen = 617
2021/02/19 22:02:53 [Info] [3064443272] proxy/vless/inbound: received request for tcp:www.google.com:443
2021/02/19 22:02:53 [Info] [3778768853] app/dispatcher: default route for tcp:sspanel.net:80
2021/02/19 22:02:53 [Info] [3778768853] proxy/freedom: opening connection to tcp:sspanel.net:80
2021/02/19 22:02:53 [Info] [3064443272] app/dispatcher: default route for tcp:www.google.com:443
2021/02/19 22:02:53 [Info] [3064443272] proxy/freedom: opening connection to tcp:www.google.com:443
2021/02/19 22:02:53 [Info] [2101954707] proxy/vless/inbound: firstLen = 554
2021/02/19 22:02:53 [Info] [2101954707] proxy/vless/inbound: received request for tcp:www.google.com:443
2021/02/19 22:02:53 [Info] [4265457262] proxy/vless/inbound: firstLen = 554
2021/02/19 22:02:53 [Info] [4265457262] proxy/vless/inbound: received request for tcp:www.google.com:443
2021/02/19 22:02:53 [Info] [2101954707] app/dispatcher: default route for tcp:www.google.com:443
2021/02/19 22:02:53 [Info] [2101954707] proxy/freedom: opening connection to tcp:www.google.com:443
2021/02/19 22:02:53 [Info] [2333394312] proxy/vless/inbound: firstLen = 554
2021/02/19 22:02:53 [Info] [2333394312] proxy/vless/inbound: received request for tcp:www.google.com:443
2021/02/19 22:02:53 [Info] [599233613] proxy/vless/inbound: firstLen = 554
2021/02/19 22:02:53 [Info] [599233613] proxy/vless/inbound: received request for tcp:www.google.com:443
2021/02/19 22:02:53 [Info] [1200564786] proxy/vless/inbound: firstLen = 617
2021/02/19 22:02:53 [Info] [1200564786] proxy/vless/inbound: received request for tcp:www.google.com:443
2021/02/19 22:02:53 [Info] [4265457262] app/dispatcher: default route for tcp:www.google.com:443
2021/02/19 22:02:53 [Info] [4265457262] proxy/freedom: opening connection to tcp:www.google.com:443
2021/02/19 22:02:53 [Info] [2333394312] app/dispatcher: default route for tcp:www.google.com:443
2021/02/19 22:02:53 [Info] [2333394312] proxy/freedom: opening connection to tcp:www.google.com:443
2021/02/19 22:02:53 [Info] [599233613] app/dispatcher: default route for tcp:www.google.com:443
2021/02/19 22:02:53 [Info] [599233613] proxy/freedom: opening connection to tcp:www.google.com:443
2021/02/19 22:02:53 [Info] [1200564786] app/dispatcher: default route for tcp:www.google.com:443
2021/02/19 22:02:53 [Info] [1200564786] proxy/freedom: opening connection to tcp:www.google.com:443
2021/02/19 22:02:53 [Info] [3778768853] proxy/freedom: dialing to to tcp:104.21.70.10:80
2021/02/19 22:02:53 [Info] [3778768853] transport/internet/tcp: dialing TCP to tcp:104.21.70.10:80
2021/02/19 22:02:53 [Info] [1200564786] proxy/freedom: dialing to to tcp:172.217.14.100:443
2021/02/19 22:02:53 [Info] [1200564786] transport/internet/tcp: dialing TCP to tcp:172.217.14.100:443
2021/02/19 22:02:53 [Info] [3064443272] proxy/freedom: dialing to to tcp:172.217.14.100:443
2021/02/19 22:02:53 [Info] [3064443272] transport/internet/tcp: dialing TCP to tcp:172.217.14.100:443
2021/02/19 22:02:53 [Info] [2101954707] proxy/freedom: dialing to to tcp:172.217.14.100:443
2021/02/19 22:02:53 [Info] [2101954707] transport/internet/tcp: dialing TCP to tcp:172.217.14.100:443
2021/02/19 22:02:53 [Info] [4265457262] proxy/freedom: dialing to to tcp:172.217.14.100:443
2021/02/19 22:02:53 [Info] [4265457262] transport/internet/tcp: dialing TCP to tcp:172.217.14.100:443
2021/02/19 22:02:53 [Info] [2333394312] proxy/freedom: dialing to to tcp:172.217.14.100:443
2021/02/19 22:02:53 [Info] [2333394312] transport/internet/tcp: dialing TCP to tcp:172.217.14.100:443
2021/02/19 22:02:53 [Info] [599233613] proxy/freedom: dialing to to tcp:172.217.14.100:443
2021/02/19 22:02:53 [Info] [599233613] transport/internet/tcp: dialing TCP to tcp:172.217.14.100:443
2021/02/19 22:02:54 [Info] [2101954707] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 15; CANCEL
2021/02/19 22:02:54 [Info] [2101954707] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process request > io: read/write on closed pipe
2021/02/19 22:02:55 [Info] [3064443272] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 13; CANCEL
2021/02/19 22:02:55 [Info] [3064443272] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/02/19 22:02:59 [Info] [3358807170] proxy/vless/inbound: firstLen = 627
2021/02/19 22:02:59 [Info] [3358807170] proxy/vless/inbound: received request for tcp:clients4.google.com:443
2021/02/19 22:02:59 [Info] [3358807170] app/dispatcher: default route for tcp:clients4.google.com:443
2021/02/19 22:02:59 [Info] [3358807170] proxy/freedom: opening connection to tcp:clients4.google.com:443
2021/02/19 22:02:59 [Info] [3358807170] proxy/freedom: dialing to to tcp:172.217.4.142:443
2021/02/19 22:02:59 [Info] [3358807170] transport/internet/tcp: dialing TCP to tcp:172.217.4.142:443
2021/02/19 22:03:04 [Info] [2333394312] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/02/19 22:03:04 [Info] [2333394312] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > context canceled
2021/02/19 22:03:04 [Info] [1200564786] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/02/19 22:03:04 [Info] [1200564786] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > context canceled
2021/02/19 22:03:04 [Info] [599233613] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > context canceled
2021/02/19 22:03:04 [Info] [599233613] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/02/19 22:06:10 [Info] [1145018563] proxy/vless/inbound: firstLen = 559
2021/02/19 22:06:10 [Info] [1145018563] proxy/vless/inbound: received request for tcp:default.exp-tas.com:443
2021/02/19 22:06:10 [Info] [1145018563] app/dispatcher: default route for tcp:default.exp-tas.com:443
2021/02/19 22:06:10 [Info] [1145018563] proxy/freedom: opening connection to tcp:default.exp-tas.com:443
2021/02/19 22:06:10 [Info] [1145018563] proxy/freedom: dialing to to tcp:13.107.5.93:443
2021/02/19 22:06:10 [Info] [1145018563] transport/internet/tcp: dialing TCP to tcp:13.107.5.93:443
2021/02/19 22:06:10 [Info] [4076461039] proxy/vless/inbound: firstLen = 568
2021/02/19 22:06:10 [Info] [4076461039] proxy/vless/inbound: received request for tcp:update.code.visualstudio.com:443
2021/02/19 22:06:10 [Info] [4076461039] app/dispatcher: default route for tcp:update.code.visualstudio.com:443
2021/02/19 22:06:10 [Info] [4076461039] proxy/freedom: opening connection to tcp:update.code.visualstudio.com:443
2021/02/19 22:06:10 [Info] [4076461039] proxy/freedom: dialing to to tcp:104.42.78.153:443
2021/02/19 22:06:10 [Info] [4076461039] transport/internet/tcp: dialing TCP to tcp:104.42.78.153:443
2021/02/19 22:06:11 [Info] [1180677676] proxy/vless/inbound: firstLen = 183
2021/02/19 22:06:11 [Info] [1180677676] proxy/vless/inbound: received request for tcp:dc.services.visualstudio.com:443
2021/02/19 22:06:11 [Info] [1180677676] app/dispatcher: default route for tcp:dc.services.visualstudio.com:443
2021/02/19 22:06:11 [Info] [1180677676] proxy/freedom: opening connection to tcp:dc.services.visualstudio.com:443
2021/02/19 22:06:11 [Info] [3384801828] proxy/vless/inbound: firstLen = 183
2021/02/19 22:06:11 [Info] [3384801828] proxy/vless/inbound: received request for tcp:dc.services.visualstudio.com:443
2021/02/19 22:06:11 [Info] [2076515969] proxy/vless/inbound: firstLen = 183
2021/02/19 22:06:11 [Info] [2076515969] proxy/vless/inbound: received request for tcp:dc.services.visualstudio.com:443
2021/02/19 22:06:11 [Info] [3384801828] app/dispatcher: default route for tcp:dc.services.visualstudio.com:443
2021/02/19 22:06:11 [Info] [3384801828] proxy/freedom: opening connection to tcp:dc.services.visualstudio.com:443
2021/02/19 22:06:11 [Info] [3296236113] proxy/vless/inbound: firstLen = 183
2021/02/19 22:06:11 [Info] [3296236113] proxy/vless/inbound: received request for tcp:dc.services.visualstudio.com:443
2021/02/19 22:06:11 [Info] [2076515969] app/dispatcher: default route for tcp:dc.services.visualstudio.com:443
2021/02/19 22:06:11 [Info] [2076515969] proxy/freedom: opening connection to tcp:dc.services.visualstudio.com:443
2021/02/19 22:06:11 [Info] [3296236113] app/dispatcher: default route for tcp:dc.services.visualstudio.com:443
2021/02/19 22:06:11 [Info] [3296236113] proxy/freedom: opening connection to tcp:dc.services.visualstudio.com:443
2021/02/19 22:06:11 [Info] [3296236113] proxy/freedom: dialing to to tcp:13.86.218.248:443
2021/02/19 22:06:11 [Info] [3296236113] transport/internet/tcp: dialing TCP to tcp:13.86.218.248:443
2021/02/19 22:06:11 [Info] [1180677676] proxy/freedom: dialing to to tcp:13.86.218.248:443
2021/02/19 22:06:11 [Info] [1180677676] transport/internet/tcp: dialing TCP to tcp:13.86.218.248:443
2021/02/19 22:06:11 [Info] [3384801828] proxy/freedom: dialing to to tcp:13.86.218.248:443
2021/02/19 22:06:11 [Info] [3384801828] transport/internet/tcp: dialing TCP to tcp:13.86.218.248:443
2021/02/19 22:06:11 [Info] [2076515969] proxy/freedom: dialing to to tcp:13.86.218.248:443
2021/02/19 22:06:11 [Info] [2076515969] transport/internet/tcp: dialing TCP to tcp:13.86.218.248:443
2021/02/19 22:06:11 [Info] [1969373908] proxy/vless/inbound: firstLen = 300
2021/02/19 22:06:11 [Info] [1969373908] proxy/vless/inbound: received request for tcp:default.exp-tas.com:443
2021/02/19 22:06:11 [Info] [1969373908] app/dispatcher: default route for tcp:default.exp-tas.com:443
2021/02/19 22:06:11 [Info] [1969373908] proxy/freedom: opening connection to tcp:default.exp-tas.com:443
2021/02/19 22:06:11 [Info] [1969373908] proxy/freedom: dialing to to tcp:13.107.5.93:443
2021/02/19 22:06:11 [Info] [1969373908] transport/internet/tcp: dialing TCP to tcp:13.107.5.93:443
2021/02/19 22:06:12 [Info] [3207882939] proxy/vless/inbound: firstLen = 571
2021/02/19 22:06:12 [Info] [3207882939] proxy/vless/inbound: received request for tcp:vscodeexperiments.azureedge.net:443
2021/02/19 22:06:12 [Info] [3207882939] app/dispatcher: default route for tcp:vscodeexperiments.azureedge.net:443
2021/02/19 22:06:12 [Info] [3207882939] proxy/freedom: opening connection to tcp:vscodeexperiments.azureedge.net:443
2021/02/19 22:06:12 [Info] [3207882939] proxy/freedom: dialing to to tcp:72.21.81.200:443
2021/02/19 22:06:12 [Info] [3207882939] transport/internet/tcp: dialing TCP to tcp:72.21.81.200:443
2021/02/19 22:06:13 [Info] [977208902] proxy/vless/inbound: firstLen = 568
2021/02/19 22:06:13 [Info] [977208902] proxy/vless/inbound: received request for tcp:marketplace.visualstudio.com:443
2021/02/19 22:06:13 [Info] [977208902] app/dispatcher: default route for tcp:marketplace.visualstudio.com:443
2021/02/19 22:06:13 [Info] [977208902] proxy/freedom: opening connection to tcp:marketplace.visualstudio.com:443
2021/02/19 22:06:13 [Info] [977208902] proxy/freedom: dialing to to tcp:13.107.42.18:443
2021/02/19 22:06:13 [Info] [977208902] transport/internet/tcp: dialing TCP to tcp:13.107.42.18:443
2021/02/19 22:06:13 [Info] [1969373908] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 41; CANCEL
2021/02/19 22:06:13 [Info] [1969373908] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/02/19 22:06:22 [Info] [2093435488] proxy/vless/inbound: firstLen = 6536
2021/02/19 22:06:22 [Info] [2093435488] proxy/vless/inbound: received request for tcp:v1.mux.cool:0
2021/02/19 22:06:22 [Info] [2093435488] common/mux: received request for udp:239.255.255.250:1900
2021/02/19 22:06:22 [Info] [2093435488] app/dispatcher: taking detour [blocked] for [udp:239.255.255.250:1900]
2021/02/19 22:06:22 [Info] [2093435488] common/mux: session 0 ends. > io: read/write on closed pipe
2021/02/19 22:06:25 [Info] [2093435488] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 47; CANCEL
2021/02/19 22:06:25 [Info] [2093435488] common/mux: unexpected EOF > common/mux: failed to read metadata > io: read/write on closed pipe
2021/02/19 22:06:26 [Info] [423179001] proxy/vless/inbound: firstLen = 1011
2021/02/19 22:06:26 [Info] [423179001] proxy/vless/inbound: received request for tcp:vortex.data.microsoft.com:443
2021/02/19 22:06:26 [Info] [423179001] app/dispatcher: default route for tcp:vortex.data.microsoft.com:443
2021/02/19 22:06:26 [Info] [423179001] proxy/freedom: opening connection to tcp:vortex.data.microsoft.com:443
2021/02/19 22:06:26 [Info] [423179001] proxy/freedom: dialing to to tcp:64.4.54.254:443
2021/02/19 22:06:26 [Info] [423179001] transport/internet/tcp: dialing TCP to tcp:64.4.54.254:443
2021/02/19 22:06:26 [Info] [423179001] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp 67.230.164.246:60362->64.4.54.254:443: read: connection reset by peer
2021/02/19 22:06:26 [Info] [423179001] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > io: read/write on closed pipe
2021/02/19 22:06:55 [Info] [4265457262] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 25; CANCEL
2021/02/19 22:06:55 [Info] [4265457262] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process request > io: read/write on closed pipe
2021/02/19 22:07:04 [Info] [977208902] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 45; CANCEL
2021/02/19 22:07:04 [Info] [977208902] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/02/19 22:07:04 [Info] [3207882939] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 43; CANCEL
2021/02/19 22:07:04 [Info] [4076461039] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 31; CANCEL
2021/02/19 22:07:04 [Info] [1145018563] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 29; CANCEL
2021/02/19 22:07:04 [Info] [3207882939] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process request > io: read/write on closed pipe
2021/02/19 22:07:04 [Info] [4076461039] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process request > io: read/write on closed pipe
2021/02/19 22:07:04 [Info] [1145018563] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/02/19 22:08:13 [Info] [3296236113] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp 67.230.164.246:46676->13.86.218.248:443: read: connection reset by peer
2021/02/19 22:08:13 [Info] [3296236113] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > io: read/write on closed pipe
2021/02/19 22:08:15 [Info] [2076515969] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp 67.230.164.246:46682->13.86.218.248:443: read: connection reset by peer
2021/02/19 22:08:15 [Info] [2076515969] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > io: read/write on closed pipe
2021/02/19 22:08:15 [Info] [3384801828] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp 67.230.164.246:46680->13.86.218.248:443: read: connection reset by peer
2021/02/19 22:08:15 [Info] [3384801828] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > io: read/write on closed pipe
2021/02/19 22:08:15 [Info] [1180677676] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process response > read tcp 67.230.164.246:46678->13.86.218.248:443: read: connection reset by peer
2021/02/19 22:08:15 [Info] [1180677676] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > io: read/write on closed pipe
2021/02/19 22:08:51 [Info] [3358807170] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 27; CANCEL
2021/02/19 22:08:51 [Info] [3358807170] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process request > io: read/write on closed pipe
2021/02/19 22:09:10 [Info] [808924924] proxy/vless/inbound: firstLen = 91
2021/02/19 22:09:10 [Info] [808924924] proxy/vless/inbound: received request for tcp:v1.mux.cool:0
2021/02/19 22:09:10 [Info] [808924924] common/mux: received request for udp:8.8.8.8:53
2021/02/19 22:09:10 [Info] [808924924] app/dispatcher: default route for udp:8.8.8.8:53
2021/02/19 22:09:10 [Info] [808924924] proxy/freedom: opening connection to udp:8.8.8.8:53
......
2021/02/19 22:10:31 [Info] [3729288746] proxy/vless/inbound: firstLen = 639
2021/02/19 22:10:31 [Info] [3729288746] proxy/vless/inbound: received request for tcp:lh3.googleusercontent.com:443
2021/02/19 22:10:31 [Info] [3729288746] app/dispatcher: default route for tcp:lh3.googleusercontent.com:443
2021/02/19 22:10:31 [Info] [3729288746] proxy/freedom: opening connection to tcp:lh3.googleusercontent.com:443
2021/02/19 22:10:31 [Info] [3729288746] proxy/freedom: dialing to to tcp:172.217.14.97:443
2021/02/19 22:10:31 [Info] [3729288746] transport/internet/tcp: dialing TCP to tcp:172.217.14.97:443
2021/02/19 22:10:32 [Info] [1316064278] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 73; CANCEL
2021/02/19 22:10:32 [Info] [1316064278] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process request > io: read/write on closed pipe
2021/02/19 22:10:35 [Info] [2961152879] proxy/vless/inbound: firstLen = 627
2021/02/19 22:10:35 [Info] [2961152879] proxy/vless/inbound: received request for tcp:clients4.google.com:443
2021/02/19 22:10:35 [Info] [2961152879] app/dispatcher: default route for tcp:clients4.google.com:443
2021/02/19 22:10:35 [Info] [2961152879] proxy/freedom: opening connection to tcp:clients4.google.com:443
2021/02/19 22:10:35 [Info] [2961152879] proxy/freedom: dialing to to tcp:142.250.72.238:443
2021/02/19 22:10:35 [Info] [2961152879] transport/internet/tcp: dialing TCP to tcp:142.250.72.238:443
......
2021/02/19 22:12:54 [Info] [3531128196] proxy/vless/inbound: firstLen = 619
2021/02/19 22:12:54 [Info] [3531128196] proxy/vless/inbound: received request for tcp:www.gstatic.com:443
2021/02/19 22:12:54 [Info] [1736996345] proxy/vless/inbound: firstLen = 619
2021/02/19 22:12:54 [Info] [1736996345] proxy/vless/inbound: received request for tcp:apis.google.com:443
2021/02/19 22:12:54 [Info] [3531128196] app/dispatcher: default route for tcp:www.gstatic.com:443
2021/02/19 22:12:54 [Info] [3531128196] proxy/freedom: opening connection to tcp:www.gstatic.com:443
2021/02/19 22:12:54 [Info] [1736996345] app/dispatcher: default route for tcp:apis.google.com:443
2021/02/19 22:12:54 [Info] [1736996345] proxy/freedom: opening connection to tcp:apis.google.com:443
2021/02/19 22:12:54 [Info] [3531128196] proxy/freedom: dialing to to tcp:172.217.5.67:443
2021/02/19 22:12:54 [Info] [3531128196] transport/internet/tcp: dialing TCP to tcp:172.217.5.67:443
2021/02/19 22:12:54 [Info] [1736996345] proxy/freedom: dialing to to tcp:172.217.11.174:443
2021/02/19 22:12:54 [Info] [1736996345] transport/internet/tcp: dialing TCP to tcp:172.217.11.174:443
2021/02/19 22:14:32 [Info] [1151394390] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 69; CANCEL
2021/02/19 22:14:32 [Info] [3610659176] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 71; CANCEL
2021/02/19 22:14:32 [Info] [1151394390] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/02/19 22:14:32 [Info] [3610659176] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/02/19 22:14:32 [Info] [3729288746] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 75; CANCEL
2021/02/19 22:14:32 [Info] [3729288746] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process request > io: read/write on closed pipe
2021/02/19 22:15:10 [Info] [808924924] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 51; CANCEL
2021/02/19 22:15:10 [Info] [808924924] common/mux: unexpected EOF > common/mux: failed to read metadata > io: read/write on closed pipe
2021/02/19 22:15:10 [Info] [808924924] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/02/19 22:15:10 [Info] [808924924] common/mux: session 0 ends. > io: read/write on closed pipe
2021/02/19 22:16:19 [Info] [3290604842] proxy/vless/inbound: firstLen = 741
2021/02/19 22:16:19 [Info] [3290604842] proxy/vless/inbound: received request for tcp:v1.mux.cool:0
2021/02/19 22:16:19 [Info] [3290604842] common/mux: received request for udp:239.255.255.250:1900
2021/02/19 22:16:19 [Info] [3290604842] app/dispatcher: taking detour [blocked] for [udp:239.255.255.250:1900]
2021/02/19 22:16:19 [Info] [3290604842] common/mux: session 0 ends. > io: read/write on closed pipe
2021/02/19 22:16:24 [Info] [3290604842] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 91; CANCEL
2021/02/19 22:16:24 [Info] [3290604842] common/mux: unexpected EOF > common/mux: failed to read metadata > io: read/write on closed pipe
2021/02/19 22:16:43 [Info] [3934826751] proxy/vless/inbound: firstLen = 557
2021/02/19 22:16:43 [Info] [3934826751] proxy/vless/inbound: received request for tcp:beacons5.gvt3.com:443
2021/02/19 22:16:43 [Info] [3934826751] app/dispatcher: default route for tcp:beacons5.gvt3.com:443
2021/02/19 22:16:43 [Info] [3934826751] proxy/freedom: opening connection to tcp:beacons5.gvt3.com:443
2021/02/19 22:16:43 [Info] [3934826751] proxy/freedom: dialing to to tcp:172.217.11.67:443
2021/02/19 22:16:43 [Info] [3934826751] transport/internet/tcp: dialing TCP to tcp:172.217.11.67:443
2021/02/19 22:16:44 [Info] [1413663804] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 85; CANCEL
2021/02/19 22:16:44 [Info] [1413663804] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/02/19 22:16:44 [Info] [3531128196] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 87; CANCEL
2021/02/19 22:16:44 [Info] [1736996345] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 89; CANCEL
2021/02/19 22:16:44 [Info] [3531128196] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process request > io: read/write on closed pipe
2021/02/19 22:16:44 [Info] [1736996345] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/02/19 22:16:48 [Info] [4169111218] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 81; CANCEL
2021/02/19 22:16:48 [Info] [4169111218] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process request > io: read/write on closed pipe
2021/02/19 22:16:54 [Info] [4277291177] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 61; CANCEL
2021/02/19 22:16:54 [Info] [4277291177] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/02/19 22:16:55 [Info] [3666755441] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 67; CANCEL
2021/02/19 22:16:55 [Info] [3666755441] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process request > io: read/write on closed pipe
2021/02/19 22:16:57 [Info] [2961152879] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 77; CANCEL
2021/02/19 22:16:57 [Info] [2961152879] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/02/19 22:17:54 [Info] [3454973650] proxy/vless/inbound: firstLen = 619
2021/02/19 22:17:54 [Info] [3454973650] proxy/vless/inbound: received request for tcp:play.google.com:443
2021/02/19 22:17:54 [Info] [3454973650] app/dispatcher: default route for tcp:play.google.com:443
2021/02/19 22:17:54 [Info] [3454973650] proxy/freedom: opening connection to tcp:play.google.com:443
2021/02/19 22:17:54 [Info] [3454973650] proxy/freedom: dialing to to tcp:172.217.5.206:443
2021/02/19 22:17:54 [Info] [3454973650] transport/internet/tcp: dialing TCP to tcp:172.217.5.206:443
2021/02/19 22:17:54 [Info] [2762086688] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 83; CANCEL
2021/02/19 22:17:54 [Info] [2762086688] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process request > io: read/write on closed pipe
2021/02/19 22:18:22 [Info] [2572041676] proxy/vless/inbound: firstLen = 627
2021/02/19 22:18:22 [Info] [2572041676] proxy/vless/inbound: received request for tcp:clients4.google.com:443
2021/02/19 22:18:22 [Info] [2572041676] app/dispatcher: default route for tcp:clients4.google.com:443
2021/02/19 22:18:22 [Info] [2572041676] proxy/freedom: opening connection to tcp:clients4.google.com:443
2021/02/19 22:18:22 [Info] [2572041676] proxy/freedom: dialing to to tcp:172.217.5.206:443
2021/02/19 22:18:22 [Info] [2572041676] transport/internet/tcp: dialing TCP to tcp:172.217.5.206:443
2021/02/19 22:19:27 [Info] [181127508] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 53; CANCEL
2021/02/19 22:19:27 [Info] [181127508] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/02/19 22:20:44 [Info] [3934826751] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 93; CANCEL
2021/02/19 22:20:44 [Info] [3934826751] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process request > io: read/write on closed pipe
2021/02/19 22:21:01 [Info] [3090294666] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 79; CANCEL
2021/02/19 22:21:01 [Info] [3090294666] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process request > io: read/write on closed pipe
2021/02/19 22:21:55 [Info] [3454973650] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 95; CANCEL
2021/02/19 22:21:55 [Info] [3454973650] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/02/19 22:22:19 [Info] [166330718] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 55; CANCEL
2021/02/19 22:22:19 [Info] [166330718] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process request > io: read/write on closed pipe
2021/02/19 22:29:01 [Info] [2572041676] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 97; CANCEL
2021/02/19 22:29:01 [Info] [2572041676] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > proxy/freedom: failed to process request > io: read/write on closed pipe
2021/02/19 23:01:32 [Info] [420084968] proxy/vless/inbound: firstLen = 91
2021/02/19 23:01:32 [Info] [420084968] proxy/vless/inbound: received request for tcp:v1.mux.cool:0
2021/02/19 23:01:32 [Info] [420084968] common/mux: received request for udp:8.8.8.8:53
2021/02/19 23:01:32 [Info] [420084968] app/dispatcher: default route for udp:8.8.8.8:53
2021/02/19 23:01:32 [Info] [420084968] proxy/freedom: opening connection to udp:8.8.8.8:53
2021/02/19 23:06:14 [Info] [1320467717] proxy/vless/inbound: firstLen = 741
2021/02/19 23:06:14 [Info] [1320467717] proxy/vless/inbound: received request for tcp:v1.mux.cool:0
2021/02/19 23:06:14 [Info] [1320467717] common/mux: received request for udp:239.255.255.250:1900
2021/02/19 23:06:14 [Info] [1320467717] app/dispatcher: taking detour [blocked] for [udp:239.255.255.250:1900]
2021/02/19 23:06:14 [Info] [1320467717] common/mux: session 0 ends. > io: read/write on closed pipe
2021/02/19 23:06:19 [Info] [1320467717] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 101; CANCEL
2021/02/19 23:06:19 [Info] [1320467717] common/mux: unexpected EOF > common/mux: failed to read metadata > io: read/write on closed pipe
2021/02/19 23:07:32 [Info] [420084968] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > stream error: stream ID 99; CANCEL
2021/02/19 23:07:32 [Info] [420084968] common/mux: unexpected EOF > common/mux: failed to read metadata > io: read/write on closed pipe
2021/02/19 23:07:32 [Info] [420084968] app/proxyman/outbound: failed to process outbound traffic > proxy/freedom: connection ends > context canceled
2021/02/19 23:07:32 [Info] [420084968] common/mux: session 0 ends. > io: read/write on closed pipe
客户端日志
2021/02/20 11:02:26 [Debug] app/log: Logger started
2021/02/20 11:02:26 [Debug] app/proxyman/inbound: creating stream worker on 127.0.0.1:7071
2021/02/20 11:02:26 [Debug] app/proxyman/inbound: creating stream worker on 127.0.0.1:7072
2021/02/20 11:02:26 [Debug] app/proxyman/inbound: creating stream worker on 127.0.0.1:10221
2021/02/20 11:02:26 [Info] transport/internet/tcp: listening TCP on 127.0.0.1:10221
2021/02/20 11:02:26 [Info] transport/internet/tcp: listening TCP on 127.0.0.1:7071
2021/02/20 11:02:26 [Info] transport/internet/udp: listening UDP on 127.0.0.1:7071
2021/02/20 11:02:26 [Info] transport/internet/tcp: listening TCP on 127.0.0.1:7072
2021/02/20 11:02:26 [Warning] core: Xray 1.3.0 started
2021/02/20 11:02:51 [Info] [3210243817] proxy/socks: TCP Connect request to tcp:www.google.com:443
2021/02/20 11:02:51 [Info] [3210243817] app/dispatcher: sniffed domain: www.google.com
2021/02/20 11:02:51 [Info] [3210243817] app/dispatcher: default route for tcp:www.google.com:443
2021/02/20 11:02:51 [Debug] [540396215] proxy/dokodemo: processing connection from: 127.0.0.1:61492
2021/02/20 11:02:51 [Info] [540396215] proxy/dokodemo: received request for 127.0.0.1:61492
2021/02/20 11:02:51 [Info] [540396215] app/dispatcher: taking detour [ptr] for [tcp:xxxxx.com:443]
2021/02/20 11:02:51 [Info] [540396215] transport/internet/tcp: dialing TCP to tcp:proxy2.xxxxxxxx:8080
2021/02/20 11:02:51 [Info] [472358339] proxy/socks: TCP Connect request to tcp:www.google.com:443
2021/02/20 11:02:51 [Info] [472358339] app/dispatcher: sniffed domain: www.google.com
2021/02/20 11:02:51 [Info] [472358339] app/dispatcher: default route for tcp:www.google.com:443
2021/02/20 11:02:51 [Info] [147318947] proxy/socks: TCP Connect request to tcp:www.google.com:443
2021/02/20 11:02:51 [Info] [147318947] app/dispatcher: sniffed domain: www.google.com
2021/02/20 11:02:51 [Info] [147318947] app/dispatcher: default route for tcp:www.google.com:443
2021/02/20 11:02:51 [Info] [3854233974] proxy/socks: TCP Connect request to tcp:www.google.com:443
2021/02/20 11:02:51 [Info] [1177537532] proxy/socks: TCP Connect request to tcp:www.google.com:443
2021/02/20 11:02:51 [Info] [3854233974] app/dispatcher: sniffed domain: www.google.com
2021/02/20 11:02:51 [Info] [3854233974] app/dispatcher: default route for tcp:www.google.com:443
2021/02/20 11:02:51 [Info] [1177537532] app/dispatcher: sniffed domain: www.google.com
2021/02/20 11:02:51 [Info] [1177537532] app/dispatcher: default route for tcp:www.google.com:443
2021/02/20 11:02:52 [Info] [4071749959] proxy/socks: TCP Connect request to tcp:www.google.com:443
2021/02/20 11:02:52 [Info] [4071749959] app/dispatcher: sniffed domain: www.google.com
2021/02/20 11:02:52 [Info] [4071749959] app/dispatcher: default route for tcp:www.google.com:443
2021/02/20 11:02:53 [Info] [4099243180] proxy/socks: TCP Connect request to tcp:sspanel.net:80
2021/02/20 11:02:53 [Info] [4099243180] app/dispatcher: sniffed domain: sspanel.net
2021/02/20 11:02:53 [Info] [4099243180] app/dispatcher: default route for tcp:sspanel.net:80
2021/02/20 11:02:53 [Info] [4099243180] proxy/vless/outbound: tunneling request to tcp:sspanel.net:80 via tcp:127.0.0.1:10221
2021/02/20 11:02:53 [Info] [3210243817] proxy/vless/outbound: tunneling request to tcp:www.google.com:443 via tcp:127.0.0.1:10221
2021/02/20 11:02:53 [Info] [3854233974] proxy/vless/outbound: tunneling request to tcp:www.google.com:443 via tcp:127.0.0.1:10221
2021/02/20 11:02:53 [Info] [1177537532] proxy/vless/outbound: tunneling request to tcp:www.google.com:443 via tcp:127.0.0.1:10221
2021/02/20 11:02:53 [Info] [147318947] proxy/vless/outbound: tunneling request to tcp:www.google.com:443 via tcp:127.0.0.1:10221
......
2021/02/20 11:06:13 [Info] [957801894] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > context canceled
2021/02/20 11:06:25 [Info] [2629614933] proxy/http: request to Method [POST] Host [vortex.data.microsoft.com] with URL [https://vortex.data.microsoft.com/collect/v1]
2021/02/20 11:06:25 [Info] [2629614933] app/dispatcher: default route for tcp:vortex.data.microsoft.com:443
2021/02/20 11:06:26 [Info] [2629614933] proxy/vless/outbound: tunneling request to tcp:vortex.data.microsoft.com:443 via tcp:127.0.0.1:10221
2021/02/20 11:06:26 [Info] [2629614933] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > proxy/vless/outbound: failed to decode response header > proxy/vless/encoding: failed to read response version > EOF
2021/02/20 11:06:26 [Warning] [2629614933] proxy/http: failed to read response from vortex.data.microsoft.com > io: read/write on closed pipe
2021/02/20 11:06:55 [Info] [147318947] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled
2021/02/20 11:06:55 [Info] [147318947] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > context canceled
2021/02/20 11:07:04 [Info] [1258001730] app/proxyman/inbound: connection ends > proxy/http: connection ends > context canceled
2021/02/20 11:07:04 [Info] [3926815241] app/proxyman/inbound: connection ends > proxy/http: connection ends > context canceled
2021/02/20 11:07:04 [Info] [3944163696] app/proxyman/inbound: connection ends > proxy/http: connection ends > context canceled
2021/02/20 11:07:04 [Info] [3730451202] app/proxyman/inbound: connection ends > proxy/http: connection ends > context canceled
2021/02/20 11:07:04 [Info] [1258001730] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > context canceled
2021/02/20 11:07:04 [Info] [3926815241] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > context canceled
2021/02/20 11:07:04 [Info] [3944163696] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > context canceled
2021/02/20 11:07:04 [Info] [3730451202] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > context canceled
2021/02/20 11:08:13 [Info] [2172074902] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > proxy/vless/outbound: failed to decode response header > proxy/vless/encoding: failed to read response version > EOF
2021/02/20 11:08:13 [Warning] [2172074902] proxy/http: failed to read response from dc.services.visualstudio.com > io: read/write on closed pipe
2021/02/20 11:08:13 [Warning] [2172074902] app/proxyman/inbound: connection ends > proxy/http: connection ends > proxy/http: failed to write response > write tcp 127.0.0.1:7072->127.0.0.1:61539: wsasend: An existing connection was forcibly closed by the remote host.
2021/02/20 11:08:15 [Info] [547163133] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > proxy/vless/outbound: failed to decode response header > proxy/vless/encoding: failed to read response version > EOF
2021/02/20 11:08:15 [Warning] [547163133] proxy/http: failed to read response from dc.services.visualstudio.com > io: read/write on closed pipe
2021/02/20 11:08:15 [Warning] [547163133] app/proxyman/inbound: connection ends > proxy/http: connection ends > proxy/http: failed to write response > write tcp 127.0.0.1:7072->127.0.0.1:61537: wsasend: An existing connection was forcibly closed by the remote host.
2021/02/20 11:08:15 [Info] [2984001397] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > proxy/vless/outbound: failed to decode response header > proxy/vless/encoding: failed to read response version > EOF
2021/02/20 11:08:15 [Warning] [2984001397] proxy/http: failed to read response from dc.services.visualstudio.com > io: read/write on closed pipe
2021/02/20 11:08:15 [Warning] [2984001397] app/proxyman/inbound: connection ends > proxy/http: connection ends > proxy/http: failed to write response > write tcp 127.0.0.1:7072->127.0.0.1:61535: wsasend: An existing connection was forcibly closed by the remote host.
2021/02/20 11:08:15 [Info] [1005520017] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > proxy/vless/outbound: failed to decode response header > proxy/vless/encoding: failed to read response version > EOF
2021/02/20 11:08:15 [Warning] [1005520017] proxy/http: failed to read response from dc.services.visualstudio.com > io: read/write on closed pipe
2021/02/20 11:08:15 [Warning] [1005520017] app/proxyman/inbound: connection ends > proxy/http: connection ends > proxy/http: failed to write response > write tcp 127.0.0.1:7072->127.0.0.1:61536: wsasend: An existing connection was forcibly closed by the remote host.
2021/02/20 11:08:50 [Info] [2549946933] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled
2021/02/20 11:08:50 [Info] [2549946933] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > context canceled
2021/02/20 11:09:27 [Info] [2329770006] proxy/socks: TCP Connect request to tcp:mtalk.google.com:443
2021/02/20 11:09:27 [Info] [2329770006] app/dispatcher: sniffed domain: mtalk.google.com
2021/02/20 11:09:27 [Info] [2329770006] app/dispatcher: default route for tcp:mtalk.google.com:443
2021/02/20 11:09:27 [Info] [2329770006] proxy/vless/outbound: tunneling request to tcp:mtalk.google.com:443 via tcp:127.0.0.1:10221
2021/02/20 11:09:36 [Info] [4099243180] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > context canceled
2021/02/20 11:09:36 [Info] [4099243180] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled
2021/02/20 11:10:16 [Info] [44223394] proxy/socks: TCP Connect request to tcp:www.google.com:443
2021/02/20 11:10:16 [Info] [44223394] app/dispatcher: sniffed domain: www.google.com
......
2021/02/20 11:35:21 [Info] [3736507882] app/dispatcher: default route for tcp:mtalk.google.com:443
2021/02/20 11:35:23 [Warning] [3736507882] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 11:35:23 [Info] [3736507882] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 11:35:23 [Info] [2079741756] proxy/socks: TCP Connect request to tcp:mtalk.google.com:443
2021/02/20 11:35:23 [Info] [2079741756] app/dispatcher: sniffed domain: mtalk.google.com
2021/02/20 11:35:23 [Info] [2079741756] app/dispatcher: default route for tcp:mtalk.google.com:443
2021/02/20 11:35:25 [Warning] [2079741756] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 11:35:25 [Info] [2079741756] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 11:35:25 [Info] [1347633850] proxy/socks: TCP Connect request to tcp:64.233.188.188:443
2021/02/20 11:35:25 [Info] [1347633850] app/dispatcher: sniffed domain: mtalk.google.com
2021/02/20 11:35:25 [Info] [1347633850] app/dispatcher: default route for tcp:mtalk.google.com:443
2021/02/20 11:35:27 [Warning] [1347633850] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 11:35:27 [Info] [1347633850] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 11:35:27 [Info] [3697594325] proxy/socks: TCP Connect request to tcp:64.233.188.188:443
2021/02/20 11:35:27 [Info] [3697594325] app/dispatcher: sniffed domain: mtalk.google.com
2021/02/20 11:35:27 [Info] [3697594325] app/dispatcher: default route for tcp:mtalk.google.com:443
2021/02/20 11:35:29 [Warning] [3697594325] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 11:35:29 [Info] [3697594325] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 11:51:29 [Info] [52781454] proxy/socks: TCP Connect request to tcp:clients4.google.com:443
2021/02/20 11:51:29 [Info] [52781454] app/dispatcher: sniffed domain: clients4.google.com
2021/02/20 11:51:29 [Info] [52781454] app/dispatcher: default route for tcp:clients4.google.com:443
2021/02/20 11:51:31 [Warning] [52781454] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 11:51:31 [Info] [52781454] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 11:51:31 [Info] [2436546668] proxy/socks: TCP Connect request to tcp:clients4.google.com:443
2021/02/20 11:51:31 [Info] [2436546668] app/dispatcher: sniffed domain: clients4.google.com
2021/02/20 11:51:31 [Info] [2436546668] app/dispatcher: default route for tcp:clients4.google.com:443
2021/02/20 11:51:33 [Warning] [2436546668] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 11:51:33 [Info] [2436546668] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 11:51:34 [Info] [1864970991] proxy/socks: TCP Connect request to tcp:oauthaccountmanager.googleapis.com:443
2021/02/20 11:51:34 [Info] [1864970991] app/dispatcher: sniffed domain: oauthaccountmanager.googleapis.com
2021/02/20 11:51:34 [Info] [1864970991] app/dispatcher: default route for tcp:oauthaccountmanager.googleapis.com:443
2021/02/20 11:51:36 [Warning] [1864970991] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 11:51:36 [Info] [1864970991] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 11:51:36 [Info] [2588380550] proxy/socks: TCP Connect request to tcp:oauthaccountmanager.googleapis.com:443
2021/02/20 11:51:36 [Info] [2588380550] app/dispatcher: sniffed domain: oauthaccountmanager.googleapis.com
2021/02/20 11:51:36 [Info] [2588380550] app/dispatcher: default route for tcp:oauthaccountmanager.googleapis.com:443
2021/02/20 11:51:38 [Warning] [2588380550] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 11:51:38 [Info] [2588380550] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 11:52:48 [Info] [1502493801] proxy/socks: TCP Connect request to tcp:clients4.google.com:443
2021/02/20 11:52:48 [Info] [1502493801] app/dispatcher: sniffed domain: clients4.google.com
2021/02/20 11:52:48 [Info] [1502493801] app/dispatcher: default route for tcp:clients4.google.com:443
2021/02/20 11:52:50 [Warning] [1502493801] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 11:52:50 [Info] [1502493801] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 11:52:50 [Info] [2116711658] proxy/socks: TCP Connect request to tcp:clients4.google.com:443
2021/02/20 11:52:50 [Info] [2116711658] app/dispatcher: sniffed domain: clients4.google.com
2021/02/20 11:52:50 [Info] [2116711658] app/dispatcher: default route for tcp:clients4.google.com:443
2021/02/20 11:52:52 [Warning] [2116711658] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 11:52:52 [Info] [2116711658] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 11:52:53 [Info] [1585978055] proxy/socks: TCP Connect request to tcp:oauthaccountmanager.googleapis.com:443
2021/02/20 11:52:53 [Info] [1585978055] app/dispatcher: sniffed domain: oauthaccountmanager.googleapis.com
2021/02/20 11:52:53 [Info] [1585978055] app/dispatcher: default route for tcp:oauthaccountmanager.googleapis.com:443
2021/02/20 11:52:55 [Warning] [1585978055] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 11:52:55 [Info] [1585978055] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 11:52:55 [Info] [3383309761] proxy/socks: TCP Connect request to tcp:oauthaccountmanager.googleapis.com:443
2021/02/20 11:52:55 [Info] [3383309761] app/dispatcher: sniffed domain: oauthaccountmanager.googleapis.com
2021/02/20 11:52:55 [Info] [3383309761] app/dispatcher: default route for tcp:oauthaccountmanager.googleapis.com:443
2021/02/20 11:52:57 [Warning] [3383309761] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 11:52:57 [Info] [3383309761] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 11:55:59 [Info] [1634539254] proxy/socks: TCP Connect request to tcp:clients4.google.com:443
2021/02/20 11:55:59 [Info] [1634539254] app/dispatcher: sniffed domain: clients4.google.com
2021/02/20 11:55:59 [Info] [1634539254] app/dispatcher: default route for tcp:clients4.google.com:443
2021/02/20 11:56:02 [Warning] [1634539254] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 11:56:02 [Info] [1634539254] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 11:56:02 [Info] [2455967664] proxy/socks: TCP Connect request to tcp:clients4.google.com:443
2021/02/20 11:56:02 [Info] [2455967664] app/dispatcher: sniffed domain: clients4.google.com
2021/02/20 11:56:02 [Info] [2455967664] app/dispatcher: default route for tcp:clients4.google.com:443
2021/02/20 11:56:04 [Warning] [2455967664] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 11:56:04 [Info] [2455967664] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 11:56:04 [Info] [3964888726] proxy/socks: TCP Connect request to tcp:oauthaccountmanager.googleapis.com:443
2021/02/20 11:56:04 [Info] [3964888726] app/dispatcher: sniffed domain: oauthaccountmanager.googleapis.com
2021/02/20 11:56:04 [Info] [3964888726] app/dispatcher: default route for tcp:oauthaccountmanager.googleapis.com:443
2021/02/20 11:56:06 [Warning] [3964888726] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 11:56:06 [Info] [3964888726] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 11:56:06 [Info] [3092782991] proxy/socks: TCP Connect request to tcp:oauthaccountmanager.googleapis.com:443
2021/02/20 11:56:06 [Info] [3092782991] app/dispatcher: sniffed domain: oauthaccountmanager.googleapis.com
2021/02/20 11:56:06 [Info] [3092782991] app/dispatcher: default route for tcp:oauthaccountmanager.googleapis.com:443
2021/02/20 11:56:08 [Warning] [3092782991] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 11:56:08 [Info] [3092782991] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 12:03:51 [Info] [3626139911] proxy/socks: TCP Connect request to tcp:clients4.google.com:443
2021/02/20 12:03:51 [Info] [3626139911] app/dispatcher: sniffed domain: clients4.google.com
2021/02/20 12:03:51 [Info] [3626139911] app/dispatcher: default route for tcp:clients4.google.com:443
2021/02/20 12:03:53 [Warning] [3626139911] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 12:03:53 [Info] [3626139911] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 12:03:53 [Info] [1411945882] proxy/socks: TCP Connect request to tcp:clients4.google.com:443
2021/02/20 12:03:53 [Info] [1411945882] app/dispatcher: sniffed domain: clients4.google.com
2021/02/20 12:03:53 [Info] [1411945882] app/dispatcher: default route for tcp:clients4.google.com:443
2021/02/20 12:03:55 [Warning] [1411945882] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 12:03:55 [Info] [1411945882] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 12:03:55 [Info] [2749635035] proxy/socks: TCP Connect request to tcp:oauthaccountmanager.googleapis.com:443
2021/02/20 12:03:55 [Info] [2749635035] app/dispatcher: sniffed domain: oauthaccountmanager.googleapis.com
2021/02/20 12:03:55 [Info] [2749635035] app/dispatcher: default route for tcp:oauthaccountmanager.googleapis.com:443
2021/02/20 12:03:57 [Warning] [2749635035] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 12:03:57 [Info] [2749635035] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 12:03:57 [Info] [2506946492] proxy/socks: TCP Connect request to tcp:oauthaccountmanager.googleapis.com:443
2021/02/20 12:03:57 [Info] [2506946492] app/dispatcher: sniffed domain: oauthaccountmanager.googleapis.com
2021/02/20 12:03:57 [Info] [2506946492] app/dispatcher: default route for tcp:oauthaccountmanager.googleapis.com:443
2021/02/20 12:03:59 [Warning] [2506946492] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 12:03:59 [Info] [2506946492] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 12:13:55 [Info] [3443407717] proxy/socks: TCP Connect request to tcp:clients4.google.com:443
2021/02/20 12:13:55 [Info] [3443407717] app/dispatcher: sniffed domain: clients4.google.com
2021/02/20 12:13:55 [Info] [3443407717] app/dispatcher: default route for tcp:clients4.google.com:443
2021/02/20 12:13:57 [Warning] [3443407717] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 12:13:57 [Info] [3443407717] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 12:13:57 [Info] [571038832] proxy/socks: TCP Connect request to tcp:clients4.google.com:443
2021/02/20 12:13:57 [Info] [571038832] app/dispatcher: sniffed domain: clients4.google.com
2021/02/20 12:13:57 [Info] [571038832] app/dispatcher: default route for tcp:clients4.google.com:443
2021/02/20 12:13:59 [Warning] [571038832] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 12:13:59 [Info] [571038832] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 12:13:59 [Info] [3256905498] proxy/socks: TCP Connect request to tcp:oauthaccountmanager.googleapis.com:443
2021/02/20 12:13:59 [Info] [3256905498] app/dispatcher: sniffed domain: oauthaccountmanager.googleapis.com
2021/02/20 12:13:59 [Info] [3256905498] app/dispatcher: default route for tcp:oauthaccountmanager.googleapis.com:443
2021/02/20 12:14:01 [Warning] [3256905498] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 12:14:01 [Info] [3256905498] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 12:14:01 [Info] [4278828398] proxy/socks: TCP Connect request to tcp:oauthaccountmanager.googleapis.com:443
2021/02/20 12:14:01 [Info] [4278828398] app/dispatcher: sniffed domain: oauthaccountmanager.googleapis.com
2021/02/20 12:14:01 [Info] [4278828398] app/dispatcher: default route for tcp:oauthaccountmanager.googleapis.com:443
2021/02/20 12:14:03 [Warning] [4278828398] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 12:14:03 [Info] [4278828398] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 12:17:20 [Info] [278680833] proxy/socks: TCP Connect request to tcp:www.google.com:443
2021/02/20 12:17:20 [Info] [278680833] app/dispatcher: sniffed domain: www.google.com
2021/02/20 12:17:20 [Info] [278680833] app/dispatcher: default route for tcp:www.google.com:443
2021/02/20 12:17:20 [Info] [1276125749] proxy/socks: TCP Connect request to tcp:www.google.com:443
2021/02/20 12:17:20 [Info] [1276125749] app/dispatcher: sniffed domain: www.google.com
2021/02/20 12:17:20 [Info] [1276125749] app/dispatcher: default route for tcp:www.google.com:443
2021/02/20 12:17:22 [Info] [277596725] proxy/socks: TCP Connect request to tcp:sspanel.net:80
2021/02/20 12:17:22 [Info] [277596725] app/dispatcher: sniffed domain: sspanel.net
2021/02/20 12:17:22 [Info] [277596725] app/dispatcher: default route for tcp:sspanel.net:80
2021/02/20 12:17:22 [Warning] [278680833] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 12:17:22 [Info] [278680833] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 12:17:22 [Info] [675766784] proxy/socks: TCP Connect request to tcp:www.google.com:443
2021/02/20 12:17:22 [Info] [675766784] app/dispatcher: sniffed domain: www.google.com
2021/02/20 12:17:22 [Info] [675766784] app/dispatcher: default route for tcp:www.google.com:443
2021/02/20 12:17:22 [Warning] [1276125749] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 12:17:22 [Info] [1276125749] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 12:17:22 [Info] [3459633080] proxy/socks: TCP Connect request to tcp:www.google.com:443
2021/02/20 12:17:22 [Info] [3459633080] app/dispatcher: sniffed domain: www.google.com
2021/02/20 12:17:22 [Info] [3459633080] app/dispatcher: default route for tcp:www.google.com:443
2021/02/20 12:17:24 [Warning] [277596725] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 12:17:24 [Info] [277596725] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 12:17:24 [Warning] [675766784] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 12:17:24 [Info] [675766784] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 12:17:24 [Warning] [3459633080] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 12:17:24 [Info] [3459633080] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 12:18:35 [Info] [1471660221] proxy/socks: TCP Connect request to tcp:sspanel.net:80
2021/02/20 12:18:35 [Info] [1471660221] app/dispatcher: sniffed domain: sspanel.net
2021/02/20 12:18:35 [Info] [1471660221] app/dispatcher: default route for tcp:sspanel.net:80
2021/02/20 12:18:37 [Warning] [1471660221] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/20 12:18:37 [Info] [1471660221] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/20 12:19:28 [Debug] app/log: Logger closing

@lw4free
Copy link

lw4free commented Feb 22, 2021

是的 我也遇到了 目前暂时切换到v2ray core使用
#208 (comment)

@Xray9
Copy link
Contributor

Xray9 commented Feb 22, 2021

@AkinoKaede

Diff
diff --git a/http/config.go b/http/config.go
index 0000000..1111111 100644
--- a/http/config.go
+++ b/http/config.go
@@ -1,11 +1,9 @@
-// +build !confonly
-
 package http
 
 import (
-	"github.com/v2fly/v2ray-core/v4/common"
-	"github.com/v2fly/v2ray-core/v4/common/dice"
-	"github.com/v2fly/v2ray-core/v4/transport/internet"
+	"github.com/xtls/xray-core/common"
+	"github.com/xtls/xray-core/common/dice"
+	"github.com/xtls/xray-core/transport/internet"
 )
 
 const protocolName = "http"
diff --git a/http/config.pb.go b/http/config.pb.go
index 718c00f..94b7d43 100644
--- a/http/config.pb.go
+++ b/http/config.pb.go
@@ -85,21 +85,20 @@ var File_transport_internet_http_config_proto protoreflect.FileDescriptor
 var file_transport_internet_http_config_proto_rawDesc = []byte{
 	0x0a, 0x24, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2f, 0x69, 0x6e, 0x74, 0x65,
 	0x72, 0x6e, 0x65, 0x74, 0x2f, 0x68, 0x74, 0x74, 0x70, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
-	0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x22, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f,
-	0x72, 0x65, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x69, 0x6e, 0x74,
-	0x65, 0x72, 0x6e, 0x65, 0x74, 0x2e, 0x68, 0x74, 0x74, 0x70, 0x22, 0x30, 0x0a, 0x06, 0x43, 0x6f,
-	0x6e, 0x66, 0x69, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03,
-	0x28, 0x09, 0x52, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68,
-	0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x42, 0x87, 0x01, 0x0a,
-	0x26, 0x63, 0x6f, 0x6d, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e,
-	0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e,
-	0x65, 0x74, 0x2e, 0x68, 0x74, 0x74, 0x70, 0x50, 0x01, 0x5a, 0x36, 0x67, 0x69, 0x74, 0x68, 0x75,
-	0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x76, 0x32, 0x66, 0x6c, 0x79, 0x2f, 0x76, 0x32, 0x72, 0x61,
-	0x79, 0x2d, 0x63, 0x6f, 0x72, 0x65, 0x2f, 0x76, 0x34, 0x2f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70,
-	0x6f, 0x72, 0x74, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x2f, 0x68, 0x74, 0x74,
-	0x70, 0xaa, 0x02, 0x22, 0x56, 0x32, 0x52, 0x61, 0x79, 0x2e, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x54,
-	0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65,
-	0x74, 0x2e, 0x48, 0x74, 0x74, 0x70, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+	0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1c, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x74, 0x72, 0x61,
+	0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x2e,
+	0x68, 0x74, 0x74, 0x70, 0x22, 0x30, 0x0a, 0x06, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x12,
+	0x0a, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x68, 0x6f,
+	0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
+	0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x42, 0x76, 0x0a, 0x20, 0x63, 0x6f, 0x6d, 0x2e, 0x78, 0x72,
+	0x61, 0x79, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x69, 0x6e, 0x74,
+	0x65, 0x72, 0x6e, 0x65, 0x74, 0x2e, 0x68, 0x74, 0x74, 0x70, 0x50, 0x01, 0x5a, 0x31, 0x67, 0x69,
+	0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x78, 0x74, 0x6c, 0x73, 0x2f, 0x78, 0x72,
+	0x61, 0x79, 0x2d, 0x63, 0x6f, 0x72, 0x65, 0x2f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72,
+	0x74, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x2f, 0x68, 0x74, 0x74, 0x70, 0xaa,
+	0x02, 0x1c, 0x58, 0x72, 0x61, 0x79, 0x2e, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74,
+	0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x2e, 0x48, 0x74, 0x74, 0x70, 0x62, 0x06,
+	0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
 }
 
 var (
@@ -116,7 +115,7 @@ func file_transport_internet_http_config_proto_rawDescGZIP() []byte {
 
 var file_transport_internet_http_config_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
 var file_transport_internet_http_config_proto_goTypes = []interface{}{
-	(*Config)(nil), // 0: v2ray.core.transport.internet.http.Config
+	(*Config)(nil), // 0: xray.transport.internet.http.Config
 }
 var file_transport_internet_http_config_proto_depIdxs = []int32{
 	0, // [0:0] is the sub-list for method output_type
diff --git a/http/config.proto b/http/config.proto
index 874c5a9..34433af 100644
--- a/http/config.proto
+++ b/http/config.proto
@@ -1,9 +1,9 @@
 syntax = "proto3";
 
-package v2ray.core.transport.internet.http;
-option csharp_namespace = "V2Ray.Core.Transport.Internet.Http";
-option go_package = "github.com/v2fly/v2ray-core/v4/transport/internet/http";
-option java_package = "com.v2ray.core.transport.internet.http";
+package xray.transport.internet.http;
+option csharp_namespace = "Xray.Transport.Internet.Http";
+option go_package = "github.com/xtls/xray-core/transport/internet/http";
+option java_package = "com.xray.transport.internet.http";
 option java_multiple_files = true;
 
 message Config {
diff --git a/http/dialer.go b/http/dialer.go
index 08ae989..2255b9f 100644
--- a/http/dialer.go
+++ b/http/dialer.go
@@ -1,5 +1,3 @@
-// +build !confonly
-
 package http
 
 import (
@@ -9,14 +7,14 @@ import (
 	"net/url"
 	"sync"
 
+	"github.com/xtls/xray-core/common"
+	"github.com/xtls/xray-core/common/buf"
+	"github.com/xtls/xray-core/common/net"
+	"github.com/xtls/xray-core/common/net/cnc"
+	"github.com/xtls/xray-core/transport/internet"
+	"github.com/xtls/xray-core/transport/internet/tls"
+	"github.com/xtls/xray-core/transport/pipe"
 	"golang.org/x/net/http2"
-
-	"github.com/v2fly/v2ray-core/v4/common"
-	"github.com/v2fly/v2ray-core/v4/common/buf"
-	"github.com/v2fly/v2ray-core/v4/common/net"
-	"github.com/v2fly/v2ray-core/v4/transport/internet"
-	"github.com/v2fly/v2ray-core/v4/transport/internet/tls"
-	"github.com/v2fly/v2ray-core/v4/transport/pipe"
 )
 
 var (
@@ -24,7 +22,7 @@ var (
 	globalDialerAccess sync.Mutex
 )
 
-func getHTTPClient(ctx context.Context, dest net.Destination, tlsSettings *tls.Config) *http.Client {
+func getHTTPClient(ctx context.Context, dest net.Destination, tlsSettings *tls.Config) (*http.Client, error) {
 	globalDialerAccess.Lock()
 	defer globalDialerAccess.Unlock()
 
@@ -33,7 +31,7 @@ func getHTTPClient(ctx context.Context, dest net.Destination, tlsSettings *tls.C
 	}
 
 	if client, found := globalDialerMap[dest]; found {
-		return client
+		return client, nil
 	}
 
 	transport := &http2.Transport{
@@ -69,6 +67,9 @@ func getHTTPClient(ctx context.Context, dest net.Destination, tlsSettings *tls.C
 			if p := state.NegotiatedProtocol; p != http2.NextProtoTLS {
 				return nil, newError("http2: unexpected ALPN protocol " + p + "; want q" + http2.NextProtoTLS).AtError()
 			}
+			if !state.NegotiatedProtocolIsMutual {
+				return nil, newError("http2: could not negotiate protocol mutually").AtError()
+			}
 			return cn, nil
 		},
 		TLSClientConfig: tlsSettings.GetTLSConfig(tls.WithDestination(dest)),
@@ -79,7 +80,7 @@ func getHTTPClient(ctx context.Context, dest net.Destination, tlsSettings *tls.C
 	}
 
 	globalDialerMap[dest] = client
-	return client
+	return client, nil
 }
 
 // Dial dials a new TCP connection to the given destination.
@@ -89,7 +90,10 @@ func Dial(ctx context.Context, dest net.Destination, streamSettings *internet.Me
 	if tlsConfig == nil {
 		return nil, newError("TLS must be enabled for http transport.").AtWarning()
 	}
-	client := getHTTPClient(ctx, dest, tlsConfig)
+	client, err := getHTTPClient(ctx, dest, tlsConfig)
+	if err != nil {
+		return nil, err
+	}
 
 	opts := pipe.OptionsFromContext(ctx)
 	preader, pwriter := pipe.New(opts...)
@@ -111,7 +115,7 @@ func Dial(ctx context.Context, dest net.Destination, streamSettings *internet.Me
 	// Disable any compression method from server.
 	request.Header.Set("Accept-Encoding", "identity")
 
-	response, err := client.Do(request) // nolint: bodyclose
+	response, err := client.Do(request)
 	if err != nil {
 		return nil, newError("failed to dial to ", dest).Base(err).AtWarning()
 	}
@@ -121,10 +125,10 @@ func Dial(ctx context.Context, dest net.Destination, streamSettings *internet.Me
 
 	bwriter := buf.NewBufferedWriter(pwriter)
 	common.Must(bwriter.SetBuffered(false))
-	return net.NewConnection(
-		net.ConnectionOutput(response.Body),
-		net.ConnectionInput(bwriter),
-		net.ConnectionOnClose(common.ChainedClosable{breader, bwriter, response.Body}),
+	return cnc.NewConnection(
+		cnc.ConnectionOutput(response.Body),
+		cnc.ConnectionInput(bwriter),
+		cnc.ConnectionOnClose(common.ChainedClosable{breader, bwriter, response.Body}),
 	), nil
 }
 
diff --git a/http/errors.generated.go b/http/errors.generated.go
index bbaec46..f004816 100644
--- a/http/errors.generated.go
+++ b/http/errors.generated.go
@@ -1,6 +1,6 @@
 package http
 
-import "github.com/v2fly/v2ray-core/v4/common/errors"
+import "github.com/xtls/xray-core/common/errors"
 
 type errPathObjHolder struct{}
 
diff --git a/http/http.go b/http/http.go
index 0ef5118..3c0d015 100644
--- a/http/http.go
+++ b/http/http.go
@@ -1,3 +1,3 @@
 package http
 
-//go:generate go run github.com/v2fly/v2ray-core/v4/common/errors/errorgen
+//go:generate go run github.com/xtls/xray-core/common/errors/errorgen
diff --git a/http/http_test.go b/http/http_test.go
index 5657748..ca1d9f2 100644
--- a/http/http_test.go
+++ b/http/http_test.go
@@ -8,14 +8,14 @@ import (
 
 	"github.com/google/go-cmp/cmp"
 
-	"github.com/v2fly/v2ray-core/v4/common"
-	"github.com/v2fly/v2ray-core/v4/common/buf"
-	"github.com/v2fly/v2ray-core/v4/common/net"
-	"github.com/v2fly/v2ray-core/v4/common/protocol/tls/cert"
-	"github.com/v2fly/v2ray-core/v4/testing/servers/tcp"
-	"github.com/v2fly/v2ray-core/v4/transport/internet"
-	. "github.com/v2fly/v2ray-core/v4/transport/internet/http"
-	"github.com/v2fly/v2ray-core/v4/transport/internet/tls"
+	"github.com/xtls/xray-core/common"
+	"github.com/xtls/xray-core/common/buf"
+	"github.com/xtls/xray-core/common/net"
+	"github.com/xtls/xray-core/common/protocol/tls/cert"
+	"github.com/xtls/xray-core/testing/servers/tcp"
+	"github.com/xtls/xray-core/transport/internet"
+	. "github.com/xtls/xray-core/transport/internet/http"
+	"github.com/xtls/xray-core/transport/internet/tls"
 )
 
 func TestHTTPConnection(t *testing.T) {
@@ -26,7 +26,7 @@ func TestHTTPConnection(t *testing.T) {
 		ProtocolSettings: &Config{},
 		SecurityType:     "tls",
 		SecuritySettings: &tls.Config{
-			Certificate: []*tls.Certificate{tls.ParseCertificate(cert.MustGenerate(nil, cert.CommonName("www.v2fly.org")))},
+			Certificate: []*tls.Certificate{tls.ParseCertificate(cert.MustGenerate(nil, cert.CommonName("www.example.com")))},
 		},
 	}, func(conn internet.Connection) {
 		go func() {
@@ -56,7 +56,7 @@ func TestHTTPConnection(t *testing.T) {
 		ProtocolSettings: &Config{},
 		SecurityType:     "tls",
 		SecuritySettings: &tls.Config{
-			ServerName:    "www.v2fly.org",
+			ServerName:    "www.example.com",
 			AllowInsecure: true,
 		},
 	})
diff --git a/http/hub.go b/http/hub.go
index f1bc841..de20b63 100644
--- a/http/hub.go
+++ b/http/hub.go
@@ -1,5 +1,3 @@
-// +build !confonly
-
 package http
 
 import (
@@ -12,14 +10,15 @@ import (
 	"golang.org/x/net/http2"
 	"golang.org/x/net/http2/h2c"
 
-	"github.com/v2fly/v2ray-core/v4/common"
-	"github.com/v2fly/v2ray-core/v4/common/net"
-	http_proto "github.com/v2fly/v2ray-core/v4/common/protocol/http"
-	"github.com/v2fly/v2ray-core/v4/common/serial"
-	"github.com/v2fly/v2ray-core/v4/common/session"
-	"github.com/v2fly/v2ray-core/v4/common/signal/done"
-	"github.com/v2fly/v2ray-core/v4/transport/internet"
-	"github.com/v2fly/v2ray-core/v4/transport/internet/tls"
+	"github.com/xtls/xray-core/common"
+	"github.com/xtls/xray-core/common/net"
+	"github.com/xtls/xray-core/common/net/cnc"
+	http_proto "github.com/xtls/xray-core/common/protocol/http"
+	"github.com/xtls/xray-core/common/serial"
+	"github.com/xtls/xray-core/common/session"
+	"github.com/xtls/xray-core/common/signal/done"
+	"github.com/xtls/xray-core/transport/internet"
+	"github.com/xtls/xray-core/transport/internet/tls"
 )
 
 type Listener struct {
@@ -96,12 +95,12 @@ func (l *Listener) ServeHTTP(writer http.ResponseWriter, request *http.Request)
 	}
 
 	done := done.New()
-	conn := net.NewConnection(
-		net.ConnectionOutput(request.Body),
-		net.ConnectionInput(flushWriter{w: writer, d: done}),
-		net.ConnectionOnClose(common.ChainedClosable{done, request.Body}),
-		net.ConnectionLocalAddr(l.Addr()),
-		net.ConnectionRemoteAddr(remoteAddr),
+	conn := cnc.NewConnection(
+		cnc.ConnectionOutput(request.Body),
+		cnc.ConnectionInput(flushWriter{w: writer, d: done}),
+		cnc.ConnectionOnClose(common.ChainedClosable{done, request.Body}),
+		cnc.ConnectionLocalAddr(l.Addr()),
+		cnc.ConnectionRemoteAddr(remoteAddr),
 	)
 	l.handler(conn)
 	<-done.Wait()

@xianren78
Copy link

xianren78 commented Feb 22, 2021

h2传家宝式bug ,同一wifi多ap,ap之间切换,或者wifi/移动数据之间切换也出这个问题。tcp就不会

@lxhao61
Copy link

lxhao61 commented Feb 22, 2021

主要是Xray与v2ray的h2传输方式无自动恢复连接或保持。一旦网络短暂断开,需要客户端再手动连接恢复。

@RPRX
Copy link
Member

RPRX commented Feb 24, 2021

Revert #79 试试?

@RPRX
Copy link
Member

RPRX commented Feb 24, 2021

麻烦 @JimhHan 研究一下

@ghost
Copy link

ghost commented Feb 24, 2021

似乎是因为没有指定ReadIdleTimeout

https://pkg.go.dev/golang.org/x/net/http2#Transport

@ghost
Copy link

ghost commented Feb 24, 2021

@elvisw @lw4free @xianren78 @lxhao61
试一试这个pr

@xianren78
Copy link

@elvisw @lw4free @xianren78 @lxhao61
试一试这个pr

这个我没法试啊,我用NG比较方便测试网络改变导致的断线。二进制只能用路由器上,没有root手机

@elvisw
Copy link
Author

elvisw commented Feb 25, 2021

试着用github action编译了一份:https://github.com/elvisw/Xray-core/actions/runs/598403225
我先测试一下Windows x64平台的

@ghost
Copy link

ghost commented Feb 25, 2021

@elvisw
如果方便的话,可以加上 #285 试一试

@elvisw
Copy link
Author

elvisw commented Feb 25, 2021

@elvisw
如果方便的话,可以加上 #285 试一试

又合并了 #285 https://github.com/elvisw/Xray-core/actions/runs/598430545

@elvisw
Copy link
Author

elvisw commented Feb 25, 2021

@JimhHan 问题似乎没有改善,我再观察一下

@elvisw
Copy link
Author

elvisw commented Feb 25, 2021

还是同样的问题

客户端日志
2021/02/25 14:01:58 [Debug] app/log: Logger started
2021/02/25 14:01:58 [Debug] app/proxyman/inbound: creating stream worker on 127.0.0.1:7071
2021/02/25 14:01:58 [Debug] app/proxyman/inbound: creating stream worker on 127.0.0.1:7072
2021/02/25 14:01:58 [Debug] app/proxyman/inbound: creating stream worker on 127.0.0.1:10221
2021/02/25 14:01:58 [Info] transport/internet/tcp: listening TCP on 127.0.0.1:10221
2021/02/25 14:01:58 [Info] transport/internet/tcp: listening TCP on 127.0.0.1:7071
2021/02/25 14:01:58 [Info] transport/internet/udp: listening UDP on 127.0.0.1:7071
2021/02/25 14:01:58 [Info] transport/internet/tcp: listening TCP on 127.0.0.1:7072
2021/02/25 14:01:58 [Warning] core: Xray 1.3.0 started
2021/02/25 14:02:05 [Info] [329841099] proxy/socks: TCP Connect request to tcp:sspanel.net:80
2021/02/25 14:02:05 [Info] [329841099] app/dispatcher: sniffed domain: sspanel.net
2021/02/25 14:02:05 [Info] [329841099] app/dispatcher: default route for tcp:sspanel.net:80
2021/02/25 14:02:05 [Debug] [2445093931] proxy/dokodemo: processing connection from: 127.0.0.1:52502
2021/02/25 14:02:05 [Info] [2445093931] proxy/dokodemo: received request for 127.0.0.1:52502
2021/02/25 14:02:05 [Info] [2445093931] app/dispatcher: taking detour [ptr] for [tcp:elvisw.com:443]
2021/02/25 14:02:05 [Info] [2445093931] transport/internet/tcp: dialing TCP to tcp:proxy2.**.*****:8080
2021/02/25 14:02:06 [Info] [329841099] proxy/vless/outbound: tunneling request to tcp:sspanel.net:80 via tcp:127.0.0.1:10221
2021/02/25 14:02:16 [Info] [3468007236] proxy/socks: TCP Connect request to tcp:clients4.google.com:443
2021/02/25 14:02:16 [Info] [3468007236] app/dispatcher: sniffed domain: clients4.google.com
2021/02/25 14:02:16 [Info] [3468007236] app/dispatcher: default route for tcp:clients4.google.com:443
2021/02/25 14:02:16 [Info] [3468007236] proxy/vless/outbound: tunneling request to tcp:clients4.google.com:443 via tcp:127.0.0.1:10221
2021/02/25 14:02:19 [Info] [3600095980] proxy/socks: TCP Connect request to tcp:www.google.com:443
2021/02/25 14:02:19 [Info] [3600095980] app/dispatcher: sniffed domain: www.google.com
2021/02/25 14:02:19 [Info] [3600095980] app/dispatcher: default route for tcp:www.google.com:443
2021/02/25 14:02:19 [Info] [3600095980] proxy/vless/outbound: tunneling request to tcp:www.google.com:443 via tcp:127.0.0.1:10221
2021/02/25 14:02:20 [Info] [3424527806] proxy/socks: TCP Connect request to tcp:www.google.com:443
2021/02/25 14:02:20 [Info] [3424527806] app/dispatcher: default route for tcp:www.google.com:443
2021/02/25 14:02:20 [Info] [2490956042] app/proxyman/inbound: connection ends > proxy/socks: failed to read request > proxy/socks: failed to read request > EOF
2021/02/25 14:02:20 [Info] [3424527806] proxy/vless/outbound: tunneling request to tcp:www.google.com:443 via tcp:127.0.0.1:10221
2021/02/25 14:02:20 [Info] [3424527806] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > EOF
2021/02/25 14:02:20 [Info] [3424527806] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:02:23 [Info] [552422056] proxy/socks: TCP Connect request to tcp:ogs.google.com:443
2021/02/25 14:02:23 [Info] [552422056] app/dispatcher: sniffed domain: ogs.google.com
2021/02/25 14:02:23 [Info] [552422056] app/dispatcher: default route for tcp:ogs.google.com:443
2021/02/25 14:02:24 [Info] [552422056] proxy/vless/outbound: tunneling request to tcp:ogs.google.com:443 via tcp:127.0.0.1:10221
2021/02/25 14:02:24 [Info] [2656430409] proxy/socks: TCP Connect request to tcp:www.gstatic.com:443
2021/02/25 14:02:24 [Info] [2656430409] app/dispatcher: sniffed domain: www.gstatic.com
2021/02/25 14:02:24 [Info] [2656430409] app/dispatcher: default route for tcp:www.gstatic.com:443
2021/02/25 14:02:24 [Info] [3005129987] proxy/socks: TCP Connect request to tcp:apis.google.com:443
2021/02/25 14:02:24 [Info] [3005129987] app/dispatcher: sniffed domain: apis.google.com
2021/02/25 14:02:24 [Info] [3005129987] app/dispatcher: default route for tcp:apis.google.com:443
2021/02/25 14:02:24 [Info] [2656430409] proxy/vless/outbound: tunneling request to tcp:www.gstatic.com:443 via tcp:127.0.0.1:10221
2021/02/25 14:02:24 [Info] [3005129987] proxy/vless/outbound: tunneling request to tcp:apis.google.com:443 via tcp:127.0.0.1:10221
2021/02/25 14:02:24 [Info] [253396777] proxy/socks: TCP Connect request to tcp:play.google.com:443
2021/02/25 14:02:24 [Info] [253396777] app/dispatcher: sniffed domain: play.google.com
2021/02/25 14:02:24 [Info] [253396777] app/dispatcher: default route for tcp:play.google.com:443
2021/02/25 14:02:24 [Info] [253396777] proxy/vless/outbound: tunneling request to tcp:play.google.com:443 via tcp:127.0.0.1:10221
2021/02/25 14:02:36 [Info] [4014960] proxy/socks: TCP Connect request to tcp:stackoverflow.com:443
2021/02/25 14:02:36 [Info] [4014960] app/dispatcher: sniffed domain: stackoverflow.com
2021/02/25 14:02:36 [Info] [4014960] app/dispatcher: default route for tcp:stackoverflow.com:443
2021/02/25 14:02:36 [Info] [4014960] proxy/vless/outbound: tunneling request to tcp:stackoverflow.com:443 via tcp:127.0.0.1:10221
2021/02/25 14:02:37 [Info] [1461497741] proxy/socks: TCP Connect request to tcp:i.stack.imgur.com:443
2021/02/25 14:02:37 [Info] [1461497741] app/dispatcher: sniffed domain: i.stack.imgur.com
2021/02/25 14:02:37 [Info] [1461497741] app/dispatcher: default route for tcp:i.stack.imgur.com:443
2021/02/25 14:02:37 [Info] [1461497741] proxy/vless/outbound: tunneling request to tcp:i.stack.imgur.com:443 via tcp:127.0.0.1:10221
2021/02/25 14:02:37 [Info] [862510818] proxy/socks: TCP Connect request to tcp:lh3.googleusercontent.com:443
2021/02/25 14:02:37 [Info] [862510818] app/dispatcher: sniffed domain: lh3.googleusercontent.com
2021/02/25 14:02:37 [Info] [862510818] app/dispatcher: default route for tcp:lh3.googleusercontent.com:443
2021/02/25 14:02:37 [Info] [1626714648] proxy/socks: TCP Connect request to tcp:cdn.sstatic.net:443
2021/02/25 14:02:37 [Info] [1626714648] app/dispatcher: sniffed domain: cdn.sstatic.net
2021/02/25 14:02:37 [Info] [1626714648] app/dispatcher: default route for tcp:cdn.sstatic.net:443
2021/02/25 14:02:37 [Info] [862510818] proxy/vless/outbound: tunneling request to tcp:lh3.googleusercontent.com:443 via tcp:127.0.0.1:10221
2021/02/25 14:02:37 [Info] [1626714648] proxy/vless/outbound: tunneling request to tcp:cdn.sstatic.net:443 via tcp:127.0.0.1:10221
2021/02/25 14:04:00 [Info] [2656430409] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled
2021/02/25 14:04:00 [Info] [2656430409] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > context canceled
2021/02/25 14:04:20 [Info] [3468007236] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled
2021/02/25 14:04:20 [Info] [253396777] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled
2021/02/25 14:04:20 [Info] [862510818] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled
2021/02/25 14:04:20 [Info] [862510818] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > context canceled
2021/02/25 14:04:20 [Info] [329841099] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled
2021/02/25 14:04:20 [Info] [4014960] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled
2021/02/25 14:04:20 [Info] [3600095980] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled
2021/02/25 14:04:20 [Info] [1461497741] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled
2021/02/25 14:04:20 [Info] [1626714648] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled
2021/02/25 14:04:20 [Info] [3005129987] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled
2021/02/25 14:04:20 [Info] [552422056] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled
2021/02/25 14:04:20 [Info] [3468007236] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > context canceled
2021/02/25 14:04:20 [Info] [1626714648] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > context canceled
2021/02/25 14:04:20 [Info] [4014960] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > context canceled
2021/02/25 14:04:20 [Info] [3600095980] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > context canceled
2021/02/25 14:04:20 [Info] [1461497741] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > context canceled
2021/02/25 14:04:20 [Info] [253396777] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > context canceled
2021/02/25 14:04:20 [Info] [329841099] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > context canceled
2021/02/25 14:04:20 [Info] [552422056] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > context canceled
2021/02/25 14:04:20 [Info] [3005129987] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: connection ends > context canceled
2021/02/25 14:09:21 [Info] [2445093931] app/proxyman/outbound: failed to process outbound traffic > proxy/http: connection ends > context canceled
2021/02/25 14:23:50 [Info] [4117346182] proxy/socks: TCP Connect request to tcp:clients2.google.com:443
2021/02/25 14:23:50 [Info] [4117346182] app/dispatcher: sniffed domain: clients2.google.com
2021/02/25 14:23:50 [Info] [4117346182] app/dispatcher: default route for tcp:clients2.google.com:443
2021/02/25 14:23:50 [Info] [849407818] proxy/socks: TCP Connect request to tcp:accounts.google.com:443
2021/02/25 14:23:50 [Info] [849407818] app/dispatcher: sniffed domain: accounts.google.com
2021/02/25 14:23:50 [Info] [849407818] app/dispatcher: default route for tcp:accounts.google.com:443
2021/02/25 14:23:50 [Info] [2647557487] proxy/socks: TCP Connect request to tcp:raw.githubusercontent.com:443
2021/02/25 14:23:50 [Info] [2647557487] app/dispatcher: sniffed domain: raw.githubusercontent.com
2021/02/25 14:23:50 [Info] [2647557487] app/dispatcher: default route for tcp:raw.githubusercontent.com:443
2021/02/25 14:23:50 [Info] [3749461868] proxy/socks: TCP Connect request to tcp:www.googleapis.com:443
2021/02/25 14:23:50 [Info] [3749461868] app/dispatcher: sniffed domain: www.googleapis.com
2021/02/25 14:23:50 [Info] [3749461868] app/dispatcher: default route for tcp:www.googleapis.com:443
2021/02/25 14:23:51 [Info] [91294381] proxy/socks: TCP Connect request to tcp:www.google.com:443
2021/02/25 14:23:51 [Info] [91294381] app/dispatcher: sniffed domain: www.google.com
2021/02/25 14:23:51 [Info] [91294381] app/dispatcher: default route for tcp:www.google.com:443
2021/02/25 14:23:51 [Info] [2727931481] proxy/socks: TCP Connect request to tcp:www.googleapis.com:443
2021/02/25 14:23:51 [Info] [2727931481] app/dispatcher: sniffed domain: www.googleapis.com
2021/02/25 14:23:51 [Info] [2727931481] app/dispatcher: default route for tcp:www.googleapis.com:443
2021/02/25 14:23:51 [Info] [1304931630] proxy/socks: TCP Connect request to tcp:www.google.com:443
2021/02/25 14:23:51 [Info] [1304931630] app/dispatcher: sniffed domain: www.google.com
2021/02/25 14:23:51 [Info] [1304931630] app/dispatcher: default route for tcp:www.google.com:443
2021/02/25 14:23:51 [Info] [4155586057] proxy/socks: TCP Connect request to tcp:www.google.com:443
2021/02/25 14:23:51 [Info] [4155586057] app/dispatcher: sniffed domain: www.google.com
2021/02/25 14:23:51 [Info] [4155586057] app/dispatcher: default route for tcp:www.google.com:443
2021/02/25 14:23:52 [Info] [3711572516] proxy/socks: TCP Connect request to tcp:raw.githubusercontent.com:443
2021/02/25 14:23:52 [Info] [3711572516] app/dispatcher: sniffed domain: raw.githubusercontent.com
2021/02/25 14:23:52 [Info] [3711572516] app/dispatcher: default route for tcp:raw.githubusercontent.com:443
2021/02/25 14:23:52 [Warning] [4117346182] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:52 [Info] [4117346182] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:52 [Warning] [849407818] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:52 [Info] [849407818] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:52 [Info] [2409308276] proxy/socks: TCP Connect request to tcp:clients2.google.com:443
2021/02/25 14:23:52 [Info] [4046944786] proxy/socks: TCP Connect request to tcp:accounts.google.com:443
2021/02/25 14:23:52 [Info] [2409308276] app/dispatcher: sniffed domain: clients2.google.com
2021/02/25 14:23:52 [Info] [2409308276] app/dispatcher: default route for tcp:clients2.google.com:443
2021/02/25 14:23:52 [Info] [4046944786] app/dispatcher: sniffed domain: accounts.google.com
2021/02/25 14:23:52 [Info] [4046944786] app/dispatcher: default route for tcp:accounts.google.com:443
2021/02/25 14:23:52 [Warning] [2647557487] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:52 [Info] [2647557487] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:52 [Info] [2276098955] proxy/socks: TCP Connect request to tcp:raw.githubusercontent.com:443
2021/02/25 14:23:52 [Info] [2276098955] app/dispatcher: sniffed domain: raw.githubusercontent.com
2021/02/25 14:23:52 [Info] [2276098955] app/dispatcher: default route for tcp:raw.githubusercontent.com:443
2021/02/25 14:23:52 [Warning] [3749461868] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:52 [Info] [3749461868] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:52 [Info] [2333053271] proxy/socks: TCP Connect request to tcp:www.googleapis.com:443
2021/02/25 14:23:52 [Info] [2333053271] app/dispatcher: sniffed domain: www.googleapis.com
2021/02/25 14:23:52 [Info] [2333053271] app/dispatcher: default route for tcp:www.googleapis.com:443
2021/02/25 14:23:53 [Warning] [91294381] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:53 [Info] [91294381] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:53 [Info] [1947852594] proxy/socks: TCP Connect request to tcp:www.google.com:443
2021/02/25 14:23:53 [Info] [1947852594] app/dispatcher: sniffed domain: www.google.com
2021/02/25 14:23:53 [Info] [1947852594] app/dispatcher: default route for tcp:www.google.com:443
2021/02/25 14:23:53 [Warning] [2727931481] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:53 [Info] [2727931481] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:53 [Info] [399006371] proxy/socks: TCP Connect request to tcp:www.googleapis.com:443
2021/02/25 14:23:53 [Info] [399006371] app/dispatcher: sniffed domain: www.googleapis.com
2021/02/25 14:23:53 [Info] [399006371] app/dispatcher: default route for tcp:www.googleapis.com:443
2021/02/25 14:23:53 [Warning] [1304931630] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:53 [Info] [1304931630] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:53 [Info] [1259298157] proxy/socks: TCP Connect request to tcp:www.google.com:443
2021/02/25 14:23:53 [Info] [1259298157] app/dispatcher: sniffed domain: www.google.com
2021/02/25 14:23:53 [Info] [1259298157] app/dispatcher: default route for tcp:www.google.com:443
2021/02/25 14:23:53 [Warning] [4155586057] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:53 [Info] [4155586057] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:53 [Info] [1117235073] proxy/socks: TCP Connect request to tcp:www.google.com:443
2021/02/25 14:23:53 [Info] [1117235073] app/dispatcher: sniffed domain: www.google.com
2021/02/25 14:23:53 [Info] [1117235073] app/dispatcher: default route for tcp:www.google.com:443
2021/02/25 14:23:54 [Warning] [3711572516] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:54 [Info] [3711572516] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:54 [Info] [2622497494] proxy/socks: TCP Connect request to tcp:raw.githubusercontent.com:443
2021/02/25 14:23:54 [Info] [2622497494] app/dispatcher: sniffed domain: raw.githubusercontent.com
2021/02/25 14:23:54 [Info] [2622497494] app/dispatcher: default route for tcp:raw.githubusercontent.com:443
2021/02/25 14:23:54 [Warning] [2409308276] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:54 [Info] [2409308276] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:54 [Warning] [4046944786] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:54 [Info] [4046944786] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:54 [Warning] [2276098955] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:54 [Info] [2276098955] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:55 [Warning] [2333053271] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:55 [Info] [2333053271] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:55 [Warning] [1947852594] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:55 [Info] [1947852594] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:55 [Info] [3067387214] proxy/socks: TCP Connect request to tcp:clients2.google.com:443
2021/02/25 14:23:55 [Info] [3067387214] app/dispatcher: sniffed domain: clients2.google.com
2021/02/25 14:23:55 [Info] [3067387214] app/dispatcher: default route for tcp:clients2.google.com:443
2021/02/25 14:23:55 [Warning] [399006371] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:55 [Info] [399006371] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:55 [Warning] [1259298157] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:55 [Info] [1259298157] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:55 [Warning] [1117235073] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:55 [Info] [1117235073] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:55 [Info] [393951694] proxy/socks: TCP Connect request to tcp:accounts.google.com:443
2021/02/25 14:23:55 [Info] [393951694] app/dispatcher: sniffed domain: accounts.google.com
2021/02/25 14:23:55 [Info] [393951694] app/dispatcher: default route for tcp:accounts.google.com:443
2021/02/25 14:23:56 [Warning] [2622497494] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:56 [Info] [2622497494] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:56 [Info] [1882556577] proxy/socks: TCP Connect request to tcp:raw.githubusercontent.com:443
2021/02/25 14:23:56 [Info] [1882556577] app/dispatcher: sniffed domain: raw.githubusercontent.com
2021/02/25 14:23:56 [Info] [1882556577] app/dispatcher: default route for tcp:raw.githubusercontent.com:443
2021/02/25 14:23:56 [Info] [3558851953] proxy/socks: TCP Connect request to tcp:www.googleapis.com:443
2021/02/25 14:23:56 [Info] [3558851953] app/dispatcher: sniffed domain: www.googleapis.com
2021/02/25 14:23:56 [Info] [3558851953] app/dispatcher: default route for tcp:www.googleapis.com:443
2021/02/25 14:23:57 [Warning] [3067387214] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:57 [Info] [3067387214] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:57 [Info] [3309815219] proxy/socks: TCP Connect request to tcp:clients2.google.com:443
2021/02/25 14:23:57 [Info] [3309815219] app/dispatcher: sniffed domain: clients2.google.com
2021/02/25 14:23:57 [Info] [3309815219] app/dispatcher: default route for tcp:clients2.google.com:443
2021/02/25 14:23:57 [Info] [3974366465] proxy/socks: TCP Connect request to tcp:avatars.githubusercontent.com:443
2021/02/25 14:23:57 [Info] [3974366465] app/dispatcher: sniffed domain: avatars.githubusercontent.com
2021/02/25 14:23:57 [Info] [3974366465] app/dispatcher: default route for tcp:avatars.githubusercontent.com:443
2021/02/25 14:23:57 [Info] [3669695633] proxy/socks: TCP Connect request to tcp:avatars.githubusercontent.com:443
2021/02/25 14:23:57 [Info] [3669695633] app/dispatcher: sniffed domain: avatars.githubusercontent.com
2021/02/25 14:23:57 [Info] [3669695633] app/dispatcher: default route for tcp:avatars.githubusercontent.com:443
2021/02/25 14:23:57 [Info] [1128650406] proxy/socks: TCP Connect request to tcp:www.googleapis.com:443
2021/02/25 14:23:57 [Info] [1128650406] app/dispatcher: sniffed domain: www.googleapis.com
2021/02/25 14:23:57 [Info] [1128650406] app/dispatcher: default route for tcp:www.googleapis.com:443
2021/02/25 14:23:57 [Warning] [393951694] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:57 [Info] [393951694] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:57 [Info] [520464952] proxy/socks: TCP Connect request to tcp:accounts.google.com:443
2021/02/25 14:23:57 [Info] [520464952] app/dispatcher: sniffed domain: accounts.google.com
2021/02/25 14:23:57 [Info] [520464952] app/dispatcher: default route for tcp:accounts.google.com:443
2021/02/25 14:23:58 [Warning] [1882556577] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:58 [Info] [1882556577] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:58 [Info] [2121418981] proxy/socks: TCP Connect request to tcp:raw.githubusercontent.com:443
2021/02/25 14:23:58 [Info] [2121418981] app/dispatcher: sniffed domain: raw.githubusercontent.com
2021/02/25 14:23:58 [Info] [2121418981] app/dispatcher: default route for tcp:raw.githubusercontent.com:443
2021/02/25 14:23:58 [Warning] [3558851953] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:58 [Info] [3558851953] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:58 [Info] [4059379745] proxy/socks: TCP Connect request to tcp:www.googleapis.com:443
2021/02/25 14:23:58 [Info] [4059379745] app/dispatcher: sniffed domain: www.googleapis.com
2021/02/25 14:23:58 [Info] [4059379745] app/dispatcher: default route for tcp:www.googleapis.com:443
2021/02/25 14:23:58 [Info] [437189319] proxy/socks: TCP Connect request to tcp:raw.githubusercontent.com:443
2021/02/25 14:23:58 [Info] [437189319] app/dispatcher: sniffed domain: raw.githubusercontent.com
2021/02/25 14:23:58 [Info] [437189319] app/dispatcher: default route for tcp:raw.githubusercontent.com:443
2021/02/25 14:23:59 [Warning] [3309815219] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:59 [Info] [3309815219] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:59 [Info] [1888608429] proxy/socks: TCP Connect request to tcp:clients2.google.com:443
2021/02/25 14:23:59 [Info] [1888608429] app/dispatcher: sniffed domain: clients2.google.com
2021/02/25 14:23:59 [Info] [1888608429] app/dispatcher: default route for tcp:clients2.google.com:443
2021/02/25 14:23:59 [Warning] [3974366465] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:59 [Info] [3974366465] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:59 [Info] [705430651] proxy/socks: TCP Connect request to tcp:avatars.githubusercontent.com:443
2021/02/25 14:23:59 [Info] [705430651] app/dispatcher: sniffed domain: avatars.githubusercontent.com
2021/02/25 14:23:59 [Info] [705430651] app/dispatcher: default route for tcp:avatars.githubusercontent.com:443
2021/02/25 14:23:59 [Info] [2908616350] proxy/socks: TCP Connect request to tcp:avatars.githubusercontent.com:443
2021/02/25 14:23:59 [Info] [2908616350] app/dispatcher: sniffed domain: avatars.githubusercontent.com
2021/02/25 14:23:59 [Info] [2908616350] app/dispatcher: default route for tcp:avatars.githubusercontent.com:443
2021/02/25 14:23:59 [Warning] [3669695633] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:59 [Info] [3669695633] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:59 [Info] [1966485894] proxy/socks: TCP Connect request to tcp:avatars.githubusercontent.com:443
2021/02/25 14:23:59 [Info] [1966485894] app/dispatcher: sniffed domain: avatars.githubusercontent.com
2021/02/25 14:23:59 [Info] [1966485894] app/dispatcher: default route for tcp:avatars.githubusercontent.com:443
2021/02/25 14:23:59 [Warning] [1128650406] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:59 [Info] [1128650406] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:23:59 [Info] [3641126580] proxy/socks: TCP Connect request to tcp:www.googleapis.com:443
2021/02/25 14:23:59 [Info] [3641126580] app/dispatcher: sniffed domain: www.googleapis.com
2021/02/25 14:23:59 [Info] [3641126580] app/dispatcher: default route for tcp:www.googleapis.com:443
2021/02/25 14:23:59 [Warning] [520464952] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:23:59 [Info] [520464952] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:24:00 [Warning] [2121418981] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:24:00 [Info] [2121418981] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:24:00 [Warning] [437189319] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:24:00 [Info] [437189319] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:24:00 [Warning] [4059379745] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:24:00 [Info] [4059379745] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:24:00 [Info] [2708207225] proxy/socks: TCP Connect request to tcp:raw.githubusercontent.com:443
2021/02/25 14:24:00 [Info] [2708207225] app/dispatcher: sniffed domain: raw.githubusercontent.com
2021/02/25 14:24:00 [Info] [2708207225] app/dispatcher: default route for tcp:raw.githubusercontent.com:443
2021/02/25 14:24:01 [Warning] [1888608429] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:24:01 [Info] [1888608429] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:24:01 [Info] [4111870941] proxy/socks: TCP Connect request to tcp:clients2.google.com:443
2021/02/25 14:24:01 [Info] [4111870941] app/dispatcher: sniffed domain: clients2.google.com
2021/02/25 14:24:01 [Info] [4111870941] app/dispatcher: default route for tcp:clients2.google.com:443
2021/02/25 14:24:01 [Warning] [705430651] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:24:01 [Info] [705430651] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:24:01 [Info] [720884065] proxy/socks: TCP Connect request to tcp:avatars.githubusercontent.com:443
2021/02/25 14:24:01 [Info] [720884065] app/dispatcher: sniffed domain: avatars.githubusercontent.com
2021/02/25 14:24:01 [Info] [720884065] app/dispatcher: default route for tcp:avatars.githubusercontent.com:443
2021/02/25 14:24:01 [Warning] [2908616350] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:24:01 [Info] [2908616350] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:24:01 [Info] [4124133541] proxy/socks: TCP Connect request to tcp:avatars.githubusercontent.com:443
2021/02/25 14:24:01 [Info] [4124133541] app/dispatcher: sniffed domain: avatars.githubusercontent.com
2021/02/25 14:24:01 [Info] [4124133541] app/dispatcher: default route for tcp:avatars.githubusercontent.com:443
2021/02/25 14:24:01 [Warning] [1966485894] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:24:01 [Info] [1966485894] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:24:01 [Warning] [3641126580] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:24:01 [Info] [3641126580] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:24:01 [Info] [1151580511] proxy/socks: TCP Connect request to tcp:avatars.githubusercontent.com:443
2021/02/25 14:24:01 [Info] [1151580511] app/dispatcher: sniffed domain: avatars.githubusercontent.com
2021/02/25 14:24:01 [Info] [1151580511] app/dispatcher: default route for tcp:avatars.githubusercontent.com:443
2021/02/25 14:24:02 [Info] [3283699034] proxy/socks: TCP Connect request to tcp:accounts.google.com:443
2021/02/25 14:24:02 [Info] [3283699034] app/dispatcher: sniffed domain: accounts.google.com
2021/02/25 14:24:02 [Info] [3283699034] app/dispatcher: default route for tcp:accounts.google.com:443
2021/02/25 14:24:02 [Warning] [2708207225] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:24:02 [Info] [2708207225] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:24:03 [Info] [3653260482] proxy/socks: TCP Connect request to tcp:www.googleapis.com:443
2021/02/25 14:24:03 [Info] [3653260482] app/dispatcher: sniffed domain: www.googleapis.com
2021/02/25 14:24:03 [Info] [3653260482] app/dispatcher: default route for tcp:www.googleapis.com:443
2021/02/25 14:24:03 [Warning] [4111870941] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:24:03 [Info] [4111870941] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:24:03 [Info] [2693185402] proxy/socks: TCP Connect request to tcp:clients2.google.com:443
2021/02/25 14:24:03 [Info] [2693185402] app/dispatcher: sniffed domain: clients2.google.com
2021/02/25 14:24:03 [Info] [2693185402] app/dispatcher: default route for tcp:clients2.google.com:443
2021/02/25 14:24:03 [Warning] [720884065] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:24:03 [Info] [720884065] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:24:03 [Info] [2351479986] proxy/socks: TCP Connect request to tcp:avatars.githubusercontent.com:443
2021/02/25 14:24:03 [Info] [2351479986] app/dispatcher: sniffed domain: avatars.githubusercontent.com
2021/02/25 14:24:03 [Info] [2351479986] app/dispatcher: default route for tcp:avatars.githubusercontent.com:443
2021/02/25 14:24:03 [Warning] [4124133541] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:24:03 [Info] [4124133541] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:24:03 [Info] [3790358478] proxy/socks: TCP Connect request to tcp:avatars.githubusercontent.com:443
2021/02/25 14:24:03 [Info] [3790358478] app/dispatcher: sniffed domain: avatars.githubusercontent.com
2021/02/25 14:24:03 [Info] [3790358478] app/dispatcher: default route for tcp:avatars.githubusercontent.com:443
2021/02/25 14:24:03 [Warning] [1151580511] app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [transport/internet/http: failed to dial to tcp:127.0.0.1:10221 > Put "https://127.0.0.1:10221/path/": dial tcp 127.0.0.1:10221: operation was canceled] > common/retry: all retry attempts failed
2021/02/25 14:24:03 [Info] [1151580511] app/proxyman/inbound: connection ends > proxy/socks: connection ends > proxy/socks: failed to transport all TCP response > io: read/write on closed pipe
2021/02/25 14:24:03 [Info] [4134292331] proxy/socks: TCP Connect request to tcp:avatars.githubusercontent.com:443
2021/02/25 14:24:03 [Info] [4134292331] app/dispatcher: sniffed domain: avatars.githubusercontent.com
2021/02/25 14:24:03 [Info] [4134292331] app/dispatcher: default route for tcp:avatars.githubusercontent.com:443
2021/02/25 14:24:04 [Info] [617760518] proxy/socks: TCP Connect request to tcp:www.googleapis.com:443
2021/02/25 14:24:04 [Info] [617760518] app/dispatcher: sniffed domain: www.googleapis.com
2021/02/25 14:24:04 [Info] [617760518] app/dispatcher: default route for tcp:www.googleapis.com:443

@ghost
Copy link

ghost commented Feb 26, 2021

@elvisw

感谢反馈,本地测试已经没有问题了。

@elvisw
Copy link
Author

elvisw commented Feb 27, 2021

@JimhHan 我用openWRT x64也是一样的情况。不会是我Github Actions编译流程设置的有问题导致没有编译正确吧

@ghost
Copy link

ghost commented Feb 27, 2021

@elvisw
抱歉,是我没有说清楚。#300 最新的提交应该解决了问题。

@elvisw
Copy link
Author

elvisw commented Feb 27, 2021

@JimhHan 好的,完了我试一下
https://github.com/elvisw/Xray-core/actions/runs/605749739

@elvisw
Copy link
Author

elvisw commented Feb 28, 2021

@JimhHan 这次的提交应该已经是修复好了 31956b0
后面的我还没测试

@ghost
Copy link

ghost commented Feb 28, 2021

@elvisw

感谢反馈。

注:5f58a9b 可能存在问题, 请使用 9e7b125 及以后的提交。

@elvisw
Copy link
Author

elvisw commented Feb 28, 2021

@JimhHan 是的,之前已经发现了。
#300 最新提交的编译,我再测试一下:https://github.com/elvisw/Xray-core/actions/runs/607201198

@elvisw
Copy link
Author

elvisw commented Feb 28, 2021

我这边目前测试没有问题

@lw4free

This comment has been minimized.

@ghost
Copy link

ghost commented Mar 1, 2021

@elvisw

十分感谢帮忙测试

@lxhao61
Copy link

lxhao61 commented Mar 1, 2021

@elvisw @lw4free @xianren78 @lxhao61
试一试这个pr

已测试,替换客户端文件后问题解决。
测试情况反馈:
我VPS还算稳定,仅测试了之前一直存在的问题:以前服务器重启,客户端也必须重新连接,否则无法恢复。

@RPRX RPRX closed this as completed in #300 Mar 1, 2021
RPRX pushed a commit that referenced this issue Mar 1, 2021
@RPRX
Copy link
Member

RPRX commented Mar 1, 2021

感谢各位的测试与反馈

@lxhao61
Copy link

lxhao61 commented Mar 1, 2021

感谢开发大神们的辛勤付出.
目前h2还有点bug。日志报错,虽然不影响使用。
Xrya或v2ray的access.log日志不时报如下错误:
2021/03/01 10:39:16 171.217.135.65:0 rejected proxy/vless/encoding: failed to read request version > stream error: stream ID 3261; CANCEL
2021/03/01 10:39:16 171.217.135.65:0 rejected proxy/vless/encoding: failed to read request version > stream error: stream ID 3263; CANCEL
2021/03/01 10:39:17 171.217.135.65:0 rejected proxy/vless/encoding: failed to read request version > stream error: stream ID 3265; CANCEL
caddy2日志不时报如下错误:
{"level":"error","ts":1614566357.9323294,"logger":"http.handlers.reverse_proxy","msg":"aborting with incomplete response","error":"context canceled"}
{"level":"error","ts":1614566394.3908837,"logger":"http.handlers.reverse_proxy","msg":"aborting with incomplete response","error":"context canceled"}
{"level":"error","ts":1614566405.2026377,"logger":"http.handlers.reverse_proxy","msg":"aborting with incomplete response","error":"context canceled"}

@ghost
Copy link

ghost commented Mar 1, 2021

@lxhao61

超时,网络问题,并非bug。

@lxhao61
Copy link

lxhao61 commented Mar 1, 2021

@lxhao61

超时,网络问题,并非bug。

应该不是,此日志太频繁了。一般不超过一分钟就产生几个。
另外我在caddy2也发现了此日志问题pr,但一直没成功解决,也不知道应该是那方解决。
caddyserver/caddy#3556

@ghost
Copy link

ghost commented Mar 1, 2021

@lxhao61

已确定为网络问题。
CANCEL (0x8): Used by the endpoint to indicate that the stream is no longer needed.

@lxhao61
Copy link

lxhao61 commented Mar 1, 2021

@lxhao61

已确定为网络问题。
CANCEL (0x8): Used by the endpoint to indicate that the stream is no longer needed.

好吧,反正不影响使用。只是同台服务器,非h2传输应用从不产生上述日志,仅h2传输应用不断产生。

@ghost ghost added the work as intended label Mar 1, 2021
github-actions bot pushed a commit to signingup/Xray-core that referenced this issue Mar 1, 2021
github-actions bot added a commit to sbily1988/Xray-core that referenced this issue Mar 1, 2021
mwhorse46 added a commit to mwhorse46/Xray-core that referenced this issue Feb 19, 2023
rampagekiller0725 added a commit to rampagekiller0725/wox that referenced this issue Jun 29, 2023
Autumn216 added a commit to Autumn216/wox that referenced this issue Oct 31, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

6 participants