v2ray / v2ray-core

A platform for building proxies to bypass network restrictions.
https://www.v2ray.com/
MIT License
45.24k stars 8.93k forks source link

在arm64的命令行v2ray端经常在使用过程中突然无法链接 #2336

Closed isnthzy closed 4 years ago

isnthzy commented 4 years ago

1) 你正在使用哪个版本的 V2Ray?(如果服务器和客户端使用了不同版本,请注明) 4.22.1 arm-64 2) 你的使用场景是什么?比如使用 Chrome 通过 Socks/VMess 代理观看 YouTube 视频。 电报,使用v2ray命令行客户端 3) 你看到的不正常的现象是什么?(请描述具体现象,比如访问超时,TLS 证书错误等) 用着用着突然就断了,往下会提供log 4) 你期待看到的正确表现是怎样的? 正常使用 5) 请附上你的配置(提交 Issue 前请隐藏服务器端IP地址)。

服务器端配置: 使用机场,非自建

    // 在这里附上服务器端配置文件

客户端配置:

   // Config file of V2Ray. This file follows standard JSON format, with comments support.
// Uncomment entries below to satisfy your needs. Also read our manual for more detail at
// https://www.v2ray.com/
{
  "log": {
    // By default, V2Ray writes access log to stdout.
    // "access": "/path/to/access/log/file",

    // By default, V2Ray write error log to stdout.
    // "error": "/path/to/error/log/file",
    "error": "/data/v2ray/run/error.log",

    // Log level, one of "debug", "info", "warning", "error", "none"
    "loglevel": "warning"
  },
  // List of inbound proxy configurations.
  "inbounds": [{
    // Just listen for DNS proxy.
    "port": 65534,

    // Tag of the inbound for DNS proxy routing.
    "tag": "dns-in",

    // DNS proxy protocol must be dokodemo-door.
    "protocol": "dokodemo-door",

    // Setting of DNS proxy.
    "settings": {
      "port": 53,
      "address": "1.1.1.1",
      "network": "tcp,udp"
    }
  },{
    // Port to listen on. You may need root access if the value is less than 1024.
    "port": 65535,

    // IP address to listen on. Change to "0.0.0.0" to listen on all network interfaces.
    "listen": "0.0.0.0",

    // Tag of the inbound proxy. May be used for routing.
    "tag": "proxy-inbound",

    // Protocol name of inbound proxy.
    "protocol": "dokodemo-door",

    // Settings of the protocol. Varies based on protocol.
    "settings": {
      // Disable timeout setting for keeping persistent connection. Such as FCM.   
      //  "timeout": 10,
      "network": "tcp,udp",
      "followRedirect": true
    },

    // Enable sniffing on TCP connection.
    "sniffing": {
      "enabled": true,
      // Target domain will be overriden to the one carried by the connection, if the connection is HTTP or HTTPS.
      "destOverride": ["http", "tls"]
    }
  }],
  // List of outbound proxy configurations.
  "outbounds": [
    {
      "mux": {
        "concurrency": -1,
        "enabled": false
      },
      "protocol": "vmess",
      "settings": {
        "vnext": [
          {
            "address": "xxxxxx",
            "port": 80,
            "users": [
              {
                "alterId": 0,
                "id": "xxxxxxxx",
                "level": 8,
                "security": "auto"
              }
            ]
          }
        ]
      },
      "streamSettings": {
        "network": "ws",
        "security": "",
        "wssettings": {
          "connectionReuse": true,
          "headers": {
            "Host": "xxxxxxxx"
          },
          "path": "/user"
        }
      },
      "tag": "proxy"
    },
    {
      "protocol": "freedom",
      "settings": {},
      "tag": "direct"
    },
    {
      "protocol": "blackhole",
      "settings": {
        "response": {
          "type": "http"
        }
      },
      "tag": "block"
    }
  ],
  "policy": {
    "levels": {
      "8": {
        "connIdle": 300,
        "downlinkOnly": 1,
        "handshake": 4,
        "uplinkOnly": 1
      }
    },
    "system": {
      "statsInboundUplink": true,
      "statsInboundDownlink": true
    }
  },
  // Transport is for global transport settings. If you have multiple transports with same settings
  // (say mKCP), you may put it here, instead of in each individual inbound/outbounds.
  //"transport": {},

  // Routing controls how traffic from inbounds are sent to outbounds.
  "routing": {
    "domainStrategy": "IPOnDemand",
    "rules":[
      {
        // Proxy DNS request
        "type": "field",
        "inboundTag": ["dns-in"],
        "outboundTag": "dns-out"
      },
      {
        // Bypass private IPs.
        "type": "field",
        "ip": ["geoip:private"],
        "outboundTag": "direct"
      },
      {
        // Bypass all china IPs.
        "type": "field",
        "ip": ["geoip:cn"],
        "outboundTag": "direct"
      },
      {
        // Bypass all china sites.
        "type": "field",
        "domain": ["geosite:cn"],
        "outboundTag": "direct"
      },
      {
        // Blocks major ads.
        "type": "field",
        "domain": ["geosite:category-ads"],
        "outboundTag": "blocked"
      }
    ]
  },

  // Dns settings for domain resolution.
  "dns": {
    // Static hosts, similar to hosts file.
    "hosts": {
      // Match v2ray.com to another domain on CloudFlare. This domain will be used when querying IPs for v2ray.com.
      "domain:v2ray.com": "www.vicemc.net",

      // The following settings help to eliminate DNS poisoning in mainland China.
      // It is safe to comment these out if this is not the case for you.
      "domain:github.io": "pages.github.com",
      "domain:wikipedia.org": "www.wikimedia.org",
      "domain:shadowsocks.org": "electronicsrealm.com"
    },
    "servers": [
      "1.1.1.1",
      "8.8.8.8",
      "9.9.9.9",
      {
        "address": "114.114.114.114",
        "port": 53,
        // List of domains that use this DNS first.
        "domains": [
          "geosite:cn"
        ]
      },
      "localhost"
    ]
  },

  // Policy controls some internal behavior of how V2Ray handles connections.
  // It may be on connection level by user levels in 'levels', or global settings in 'system.'
  "policy": {
    // Connection policys by user levels
    "levels": {
      "0": {
        "uplinkOnly": 0,
        "downlinkOnly": 0
      }
    },
    "system": {
      "statsInboundUplink": false,
      "statsInboundDownlink": false
    }
  },

  // Stats enables internal stats counter.
  // This setting can be used together with Policy and Api. 
  //"stats":{},

  // Api enables gRPC APIs for external programs to communicate with V2Ray instance.
  //"api": {
    //"tag": "api",
    //"services": [
    //  "HandlerService",
    //  "LoggerService",
    //  "StatsService"
    //]
  //},

  // You may add other entries to the configuration, but they will not be recognized by V2Ray.
  "other": {}
}

6) 请附上出错时软件输出的错误日志。在 Linux 中,日志通常在 /var/log/v2ray/error.log 文件中。

服务器端错误日志:

    // 在这里附上服务器端日志

客户端错误日志:

    // 在这里附上客户端日志

7) 请附上访问日志。在 Linux 中,日志通常在 /var/log/v2ray/access.log 文件中。

    // 在这里附上服务器端日志

8) 其它相关的配置文件(如 Nginx)和相关日志。 error.log 这个是error.log,需要注意的是,日志上提供的时间与我相处的时间差别有几个小时

isnthzy commented 4 years ago

在我提交的上面有log,因为log一直再加,达到了200kb很多重复行,所以我把文件上传了

kslr commented 4 years ago

这个问题找机场解决,但你可以先试试关闭UDP和DNS解析

isnthzy commented 4 years ago

这个问题找机场解决,但你可以先试试关闭UDP和DNS解析

关闭upd后,error出现了大量的 v2ray.com/core/app/proxyman/outbound: failed to process outbound traffic > v2ray.com/core/proxy/vmess/outbound: connection ends > v2ray.com/core/proxy/vmess/outbound: failed to read header > v2ray.com/core/proxy/vmess/encoding: failed to read response header > websocket: close 1000 (normal) 这个怎么解决,应该不是机场的问题

heham commented 4 years ago

这个我用win版的也是好多次出现看youtube断流的,出现的时候客户端测速正常,有时切换一下程序里的http代理就好了,多数情况要重启服务才能恢复。出现断流的时候用手机端连接同一个服务器是正常使用的。 以下为近26日的日志,服务器和端口号做了替换,其他未改动。 2020/03/26 08:10:07 [Debug] v2ray.com/core/app/log: Logger started 2020/03/26 08:10:07 [Debug] v2ray.com/core/app/stats: create new counter inbound>>>proxy>>>traffic>>>uplink 2020/03/26 08:10:07 [Debug] v2ray.com/core/app/stats: create new counter inbound>>>proxy>>>traffic>>>downlink 2020/03/26 08:10:07 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 0.0.0.0:1080 2020/03/26 08:10:07 [Debug] v2ray.com/core/app/stats: create new counter inbound>>>api>>>traffic>>>uplink 2020/03/26 08:10:07 [Debug] v2ray.com/core/app/stats: create new counter inbound>>>api>>>traffic>>>downlink 2020/03/26 08:10:07 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 127.0.0.1:1072 2020/03/26 08:10:07 [Info] v2ray.com/core/transport/internet/tcp: listening TCP on 0.0.0.0:1080 2020/03/26 08:10:07 [Info] v2ray.com/core/transport/internet/udp: listening UDP on 0.0.0.0:1080 2020/03/26 08:10:07 [Info] v2ray.com/core/transport/internet/tcp: listening TCP on 127.0.0.1:1072 2020/03/26 08:10:07 [Warning] v2ray.com/core: V2Ray 4.23.1 started 2020/03/26 08:10:08 [Debug] [3626637799] v2ray.com/core/proxy/dokodemo: processing connection from: 127.0.0.1:1073 2020/03/26 08:10:08 [Info] [3626637799] v2ray.com/core/app/dispatcher: taking detour [api] for [tcp:127.0.0.1:0] 2020/03/26 08:12:02 [Info] [2485707824] v2ray.com/core/proxy/socks: TCP Connect request to tcp:raw.githubusercontent.com:443 2020/03/26 08:12:02 [Info] [2485707824] v2ray.com/core/app/dispatcher: sniffed domain: raw.githubusercontent.com 2020/03/26 08:12:02 [Info] [2485707824] v2ray.com/core/app/dispatcher: default route for tcp:raw.githubusercontent.com:443 2020/03/26 08:12:02 [Info] [2485707824] v2ray.com/core/common/mux: dispatching request to tcp:raw.githubusercontent.com:443 2020/03/26 08:12:02 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 08:12:02 [Info] [1656964674] v2ray.com/core/proxy/socks: TCP Connect request to tcp:raw.githubusercontent.com:443 2020/03/26 08:12:02 [Info] [1656964674] v2ray.com/core/app/dispatcher: sniffed domain: raw.githubusercontent.com 2020/03/26 08:12:02 [Info] [1656964674] v2ray.com/core/app/dispatcher: default route for tcp:raw.githubusercontent.com:443 2020/03/26 08:12:02 [Info] [1656964674] v2ray.com/core/common/mux: dispatching request to tcp:raw.githubusercontent.com:443 2020/03/26 08:12:03 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 08:12:05 [Info] [3132552979] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:12:05 [Info] [3132552979] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:12:05 [Info] [3132552979] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:12:05 [Info] [3132552979] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:12:05 [Info] [1227936973] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:12:05 [Info] [813837312] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:12:05 [Info] [3247191965] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 08:12:05 [Info] [2743894974] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:12:05 [Info] [3490746986] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:12:05 [Info] [1227936973] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:12:05 [Info] [1227936973] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:12:05 [Info] [1227936973] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:12:05 [Info] [813837312] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:12:05 [Info] [813837312] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:12:05 [Info] [813837312] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:12:05 [Info] [3247191965] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 08:12:05 [Info] [3247191965] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 08:12:05 [Info] [3247191965] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 08:12:05 [Info] [2743894974] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:12:05 [Info] [2743894974] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:12:05 [Info] [2743894974] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:12:05 [Info] [3490746986] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:12:05 [Info] [3490746986] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:12:05 [Info] [3490746986] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:12:05 [Info] [1158317261] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:12:05 [Info] [1158317261] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:12:05 [Info] [1158317261] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:12:05 [Info] [1158317261] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:12:05 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 08:12:05 [Info] [3365188508] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 08:12:05 [Info] [3365188508] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 08:12:05 [Info] [3365188508] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 08:12:05 [Info] [3365188508] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 08:12:05 [Info] [196002773] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 08:12:05 [Info] [196002773] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 08:12:05 [Info] [196002773] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 08:12:05 [Info] [196002773] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 08:12:05 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 08:12:08 [Info] [1275299699] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/26 08:12:08 [Info] [1865425488] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/26 08:12:08 [Info] [1275299699] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/26 08:12:08 [Info] [1275299699] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/26 08:12:08 [Info] [1275299699] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/26 08:12:08 [Info] [1865425488] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/26 08:12:08 [Info] [1865425488] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/26 08:12:08 [Info] [1865425488] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/26 08:12:18 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 08:12:19 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 08:12:21 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 08:12:22 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 08:16:52 [Info] [1902386827] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:16:52 [Info] [1902386827] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:16:52 [Info] [1902386827] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:16:52 [Info] [1902386827] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:16:52 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 08:16:52 [Info] [592441882] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:16:52 [Info] [1991046791] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:16:52 [Info] [2173266157] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:16:52 [Info] [2173266157] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:16:52 [Info] [2173266157] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:16:52 [Info] [2173266157] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:16:52 [Info] [592441882] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:16:52 [Info] [592441882] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:16:52 [Info] [592441882] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:16:52 [Info] [1991046791] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:16:52 [Info] [1991046791] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:16:52 [Info] [1991046791] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:16:52 [Info] [1397906906] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:16:52 [Info] [1494361943] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:16:52 [Info] [1397906906] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:16:52 [Info] [1397906906] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:16:52 [Info] [1397906906] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:16:52 [Info] [1494361943] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:16:52 [Info] [1494361943] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:16:52 [Info] [1494361943] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:16:52 [Info] [1507099476] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 08:16:52 [Info] [1507099476] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 08:16:52 [Info] [1507099476] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 08:16:52 [Info] [1507099476] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 08:16:52 [Info] [111641940] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 08:16:52 [Info] [111641940] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 08:16:52 [Info] [111641940] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 08:16:52 [Info] [111641940] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 08:16:53 [Info] [1370037545] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:16:53 [Info] [1370037545] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:16:53 [Info] [1370037545] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:16:53 [Info] [2341251717] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:16:53 [Info] [1370037545] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:16:53 [Info] [2341251717] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:16:53 [Info] [2341251717] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:16:53 [Info] [2341251717] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:16:53 [Info] [1397933591] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: failed to read request > EOF 2020/03/26 08:16:53 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 08:16:54 [Info] [187794389] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:16:54 [Info] [187794389] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:16:54 [Info] [187794389] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:16:54 [Info] [187794389] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:16:54 [Info] [2860367600] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/26 08:16:54 [Info] [2860367600] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/26 08:16:54 [Info] [2860367600] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/26 08:16:54 [Info] [2860367600] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/26 08:16:54 [Info] [3767652214] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/26 08:16:54 [Info] [3767652214] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/26 08:16:54 [Info] [3767652214] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/26 08:16:54 [Info] [3767652214] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/26 08:16:58 [Info] [3295025961] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: insufficient header > EOF 2020/03/26 08:16:58 [Info] [4137405242] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: insufficient header > EOF 2020/03/26 08:16:58 [Info] [1789269889] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [1789269889] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 08:16:58 [Info] [1789269889] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [1789269889] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [4152418699] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:16:58 [Info] [3764241875] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [4152418699] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:16:58 [Info] [4152418699] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:16:58 [Info] [4152418699] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:16:58 [Info] [3764241875] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 08:16:58 [Info] [3764241875] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [3764241875] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [1804898932] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [1804898932] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 08:16:58 [Info] [1804898932] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [1804898932] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [272498519] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [272498519] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 08:16:58 [Info] [272498519] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [272498519] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [2039620374] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [2039620374] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 08:16:58 [Info] [2039620374] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [2039620374] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [404897850] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [404897850] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 08:16:58 [Info] [404897850] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [404897850] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [2381047515] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:16:58 [Info] [2381047515] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:16:58 [Info] [2381047515] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:16:58 [Info] [2381047515] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:16:58 [Info] [471684004] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [471684004] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 08:16:58 [Info] [471684004] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [471684004] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 08:16:58 [Info] [3703793742] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:16:58 [Info] [3703793742] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:16:58 [Info] [3703793742] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:16:58 [Info] [3703793742] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:16:58 [Info] [1911585841] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [1911585841] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 08:16:58 [Info] [1911585841] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [1911585841] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [1035472584] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [1035472584] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 08:16:58 [Info] [1035472584] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] [1035472584] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 08:16:58 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 08:17:06 [Info] [3645489179] v2ray.com/core/proxy/socks: TCP Connect request to tcp:lh6.googleusercontent.com:443 2020/03/26 08:17:06 [Info] [3645489179] v2ray.com/core/app/dispatcher: sniffed domain: lh6.googleusercontent.com 2020/03/26 08:17:06 [Info] [3645489179] v2ray.com/core/app/dispatcher: default route for tcp:lh6.googleusercontent.com:443 2020/03/26 08:17:06 [Info] [3645489179] v2ray.com/core/common/mux: dispatching request to tcp:lh6.googleusercontent.com:443 2020/03/26 08:17:14 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 08:17:15 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 08:20:36 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 08:20:37 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 08:27:11 [Info] [3745587709] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.google.com:443 2020/03/26 08:27:12 [Info] [3745587709] v2ray.com/core/app/dispatcher: sniffed domain: www.google.com 2020/03/26 08:27:12 [Info] [3745587709] v2ray.com/core/app/dispatcher: default route for tcp:www.google.com:443 2020/03/26 08:27:12 [Info] [3745587709] v2ray.com/core/common/mux: dispatching request to tcp:www.google.com:443 2020/03/26 08:27:12 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 08:27:12 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 08:29:16 [Info] [2467538623] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:29:16 [Info] [2467538623] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:29:16 [Info] [2467538623] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:29:16 [Info] [2467538623] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:29:25 [Info] [1646236916] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:29:25 [Info] [1646236916] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:29:25 [Info] [1646236916] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:29:25 [Info] [1646236916] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:29:34 [Info] [3665935032] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 08:29:34 [Info] [3657980014] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 08:29:34 [Info] [360585584] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 08:29:34 [Info] [3665935032] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 08:29:34 [Info] [3665935032] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 08:29:34 [Info] [3665935032] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 08:29:34 [Info] [3657980014] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 08:29:34 [Info] [3657980014] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 08:29:34 [Info] [3657980014] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 08:29:34 [Info] [360585584] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 08:29:34 [Info] [360585584] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 08:29:34 [Info] [360585584] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 08:29:34 [Info] [1469109538] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 08:29:34 [Info] [1469109538] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 08:29:34 [Info] [1469109538] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 08:29:34 [Info] [1469109538] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 08:29:34 [Info] [3401615927] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:29:34 [Info] [3401615927] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:29:34 [Info] [3401615927] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:29:34 [Info] [3401615927] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:29:34 [Info] [1337406159] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:29:34 [Info] [1337406159] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:29:34 [Info] [1337406159] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:29:34 [Info] [1337406159] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:29:34 [Info] [40585558] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:29:34 [Info] [40585558] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:29:34 [Info] [40585558] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:29:34 [Info] [40585558] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:29:44 [Info] [710135412] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 08:29:44 [Info] [710135412] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 08:29:44 [Info] [710135412] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 08:29:44 [Info] [710135412] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 08:29:48 [Info] [3464894200] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5mlrn7r.googlevideo.com:443 2020/03/26 08:29:48 [Info] [3464894200] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5mlrn7r.googlevideo.com 2020/03/26 08:29:48 [Info] [3464894200] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5mlrn7r.googlevideo.com:443 2020/03/26 08:29:48 [Info] [3464894200] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5mlrn7r.googlevideo.com:443 2020/03/26 08:29:48 [Info] [2723422763] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: insufficient header > EOF 2020/03/26 08:29:48 [Info] [3173927794] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: insufficient header > EOF 2020/03/26 08:29:48 [Info] [3680012800] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5mlrn7r.googlevideo.com:443 2020/03/26 08:29:48 [Info] [3680012800] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5mlrn7r.googlevideo.com 2020/03/26 08:29:48 [Info] [3680012800] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5mlrn7r.googlevideo.com:443 2020/03/26 08:29:48 [Info] [3680012800] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5mlrn7r.googlevideo.com:443 2020/03/26 08:29:53 [Info] [3918537332] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 08:29:53 [Info] [3918537332] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 08:29:53 [Info] [3918537332] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 08:29:53 [Info] [3918537332] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 08:29:53 [Info] [1703442066] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 08:29:53 [Info] [1703442066] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 08:29:53 [Info] [1703442066] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 08:29:53 [Info] [1703442066] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 08:30:00 [Info] [698425245] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/26 08:30:00 [Info] [698425245] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/26 08:30:00 [Info] [698425245] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/26 08:30:00 [Info] [698425245] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/26 08:36:48 [Info] [896436980] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 08:36:48 [Info] [896436980] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 08:36:48 [Info] [896436980] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 08:36:48 [Info] [896436980] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 08:40:00 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 08:40:01 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 08:47:10 [Info] [1201688507] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 08:47:10 [Info] [1201688507] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 08:47:10 [Info] [1201688507] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 08:47:10 [Info] [1201688507] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 08:47:10 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 08:47:11 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 08:50:06 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 08:50:07 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 08:59:55 [Info] [1727614562] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 08:59:55 [Info] [1727614562] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 08:59:55 [Info] [1727614562] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 08:59:55 [Info] [1727614562] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 08:59:55 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 08:59:55 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 09:01:55 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF 2020/03/26 09:01:55 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 09:01:56 [Info] [1727614562] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 09:01:56 [Info] [1727614562] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 09:17:13 [Info] [93909327] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 09:17:13 [Info] [93909327] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 09:17:13 [Info] [93909327] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 09:17:13 [Info] [93909327] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 09:17:13 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 09:17:13 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 09:20:09 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 09:20:10 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 09:26:49 [Info] [3738144767] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 09:26:49 [Info] [3738144767] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 09:26:49 [Info] [3738144767] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 09:26:49 [Info] [3738144767] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 09:26:49 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 09:26:50 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 09:26:50 [Info] [2198035302] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 09:26:50 [Info] [2198035302] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 09:26:50 [Info] [2198035302] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 09:26:50 [Info] [2198035302] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 09:27:01 [Info] [3832124009] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5mlrn7r.googlevideo.com:443 2020/03/26 09:27:01 [Info] [3832124009] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5mlrn7r.googlevideo.com 2020/03/26 09:27:01 [Info] [3832124009] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5mlrn7r.googlevideo.com:443 2020/03/26 09:27:01 [Info] [3832124009] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5mlrn7r.googlevideo.com:443 2020/03/26 09:27:01 [Info] [3543773575] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 09:27:01 [Info] [3543773575] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 09:27:01 [Info] [3543773575] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 09:27:01 [Info] [3543773575] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 09:27:58 [Info] [4039307251] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5mlrn7r.googlevideo.com:443 2020/03/26 09:27:58 [Info] [4039307251] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5mlrn7r.googlevideo.com 2020/03/26 09:27:58 [Info] [4039307251] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5mlrn7r.googlevideo.com:443 2020/03/26 09:27:58 [Info] [4039307251] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5mlrn7r.googlevideo.com:443 2020/03/26 09:29:17 [Info] [3557395962] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/26 09:29:17 [Info] [3557395962] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/26 09:29:17 [Info] [3557395962] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/26 09:29:17 [Info] [3557395962] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/26 09:29:17 [Info] [475992080] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 09:29:17 [Info] [475992080] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 09:29:17 [Info] [475992080] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 09:29:17 [Info] [475992080] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 09:33:13 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 09:33:14 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 09:45:15 [Info] [827270412] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 09:45:15 [Info] [827270412] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 09:45:15 [Info] [827270412] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 09:45:15 [Info] [827270412] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 09:45:15 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 09:45:16 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 09:47:15 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF 2020/03/26 09:47:15 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 09:47:16 [Info] [827270412] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 09:47:16 [Info] [827270412] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 09:47:16 [Info] [810075483] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 09:47:16 [Info] [810075483] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 09:47:16 [Info] [810075483] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 09:47:16 [Info] [810075483] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 09:47:16 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 09:47:16 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 09:50:12 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 09:50:13 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 10:05:18 [Info] [859658821] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 10:05:18 [Info] [859658821] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 10:05:18 [Info] [859658821] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 10:05:18 [Info] [859658821] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 10:05:18 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 10:05:19 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 10:11:58 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 10:11:59 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 10:16:42 [Info] [4186047214] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/26 10:16:42 [Info] [4186047214] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/26 10:16:42 [Info] [4186047214] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/26 10:16:42 [Info] [4186047214] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/26 10:16:42 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 10:16:43 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 10:16:43 [Info] [1376347725] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:16:43 [Info] [1376347725] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:16:43 [Info] [1376347725] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:16:43 [Info] [1376347725] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:16:43 [Info] [1282792267] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 10:16:43 [Info] [1282792267] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 10:16:43 [Info] [1282792267] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 10:16:43 [Info] [1282792267] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 10:20:10 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 10:20:11 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 10:59:10 [Info] [3291862546] v2ray.com/core/proxy/socks: TCP Connect request to tcp:raw.githubusercontent.com:443 2020/03/26 10:59:10 [Info] [3291862546] v2ray.com/core/app/dispatcher: sniffed domain: raw.githubusercontent.com 2020/03/26 10:59:10 [Info] [3291862546] v2ray.com/core/app/dispatcher: default route for tcp:raw.githubusercontent.com:443 2020/03/26 10:59:10 [Info] [3291862546] v2ray.com/core/common/mux: dispatching request to tcp:raw.githubusercontent.com:443 2020/03/26 10:59:10 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 10:59:10 [Info] [3408581325] v2ray.com/core/proxy/socks: TCP Connect request to tcp:raw.githubusercontent.com:443 2020/03/26 10:59:10 [Info] [3408581325] v2ray.com/core/app/dispatcher: sniffed domain: raw.githubusercontent.com 2020/03/26 10:59:10 [Info] [3408581325] v2ray.com/core/app/dispatcher: default route for tcp:raw.githubusercontent.com:443 2020/03/26 10:59:10 [Info] [3408581325] v2ray.com/core/common/mux: dispatching request to tcp:raw.githubusercontent.com:443 2020/03/26 10:59:11 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 10:59:25 [Info] [4202716095] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/26 10:59:25 [Info] [4202716095] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/26 10:59:25 [Info] [4202716095] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/26 10:59:25 [Info] [4202716095] v2ray.com/core/common/mux: failed to write first payload > EOF 2020/03/26 10:59:25 [Info] [2674710030] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 10:59:25 [Info] [2674710030] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 10:59:25 [Info] [2674710030] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 10:59:25 [Info] [2674710030] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 10:59:25 [Info] [2840980337] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 10:59:25 [Info] [2840980337] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 10:59:25 [Info] [2840980337] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 10:59:25 [Info] [2840980337] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 10:59:25 [Info] [2742216776] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 10:59:25 [Info] [2742216776] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 10:59:25 [Info] [2742216776] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 10:59:25 [Info] [2742216776] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 10:59:25 [Info] [618156195] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:25 [Info] [2848293095] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:25 [Info] [618156195] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:25 [Info] [618156195] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:25 [Info] [618156195] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:25 [Info] [2848293095] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:25 [Info] [2848293095] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:25 [Info] [2848293095] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:25 [Info] [727436892] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:25 [Info] [727436892] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:25 [Info] [727436892] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:25 [Info] [2535517427] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [1889616235] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:25 [Info] [727436892] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:25 [Info] [1749641664] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [2535517427] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:25 [Info] [2535517427] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [2535517427] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [1889616235] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:25 [Info] [1889616235] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:25 [Info] [1889616235] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:25 [Info] [1749641664] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [1749641664] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [1749641664] v2ray.com/core/common/mux: failed to write first payload > EOF 2020/03/26 10:59:25 [Info] [1517007642] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [4268563966] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [1517007642] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:25 [Info] [1517007642] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [1517007642] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [4268563966] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:25 [Info] [4268563966] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [4268563966] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [2798157030] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [753444293] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [2798157030] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:25 [Info] [2798157030] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [2798157030] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [753444293] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:25 [Info] [753444293] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [753444293] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [2065308578] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [2065308578] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:25 [Info] [2065308578] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [2065308578] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [3045373855] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [3045373855] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:25 [Info] [3045373855] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [3045373855] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [166948942] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [166948942] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:25 [Info] [166948942] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [166948942] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [2110750805] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [2466183648] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [2110750805] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:25 [Info] [2110750805] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [2110750805] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [2466183648] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:25 [Info] [2466183648] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [2466183648] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [2001028670] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [2001028670] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:25 [Info] [2001028670] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [2001028670] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:25 [Info] [3395640646] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 10:59:25 [Info] [3395640646] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 10:59:25 [Info] [3395640646] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 10:59:25 [Info] [3395640646] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 10:59:25 [Info] [3813632397] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 10:59:25 [Info] [3813632397] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 10:59:25 [Info] [3813632397] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 10:59:25 [Info] [3813632397] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 10:59:27 [Info] [1955971754] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/26 10:59:27 [Info] [1955971754] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/26 10:59:27 [Info] [1955971754] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/26 10:59:27 [Info] [1955971754] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/26 10:59:27 [Info] [4073283186] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/26 10:59:27 [Info] [4073283186] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/26 10:59:27 [Info] [4073283186] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/26 10:59:27 [Info] [4073283186] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/26 10:59:28 [Info] [3066803096] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: failed to read request > read tcp 127.0.0.1:1080->127.0.0.1:6066: wsarecv: An existing connection was forcibly closed by the remote host. 2020/03/26 10:59:28 [Info] [3025605575] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: failed to read request > read tcp 127.0.0.1:1080->127.0.0.1:6067: wsarecv: An existing connection was forcibly closed by the remote host. 2020/03/26 10:59:28 [Info] [3400298523] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: failed to read request > read tcp 127.0.0.1:1080->127.0.0.1:6068: wsarecv: An existing connection was forcibly closed by the remote host. 2020/03/26 10:59:28 [Info] [2974970261] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [2974970261] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP request > read tcp 127.0.0.1:1080->127.0.0.1:6069: wsarecv: An existing connection was forcibly closed by the remote host. 2020/03/26 10:59:28 [Info] [2974970261] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [2974970261] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [2974970261] v2ray.com/core/common/mux: failed to write first payload > io: read/write on closed pipe 2020/03/26 10:59:28 [Info] [3203208436] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [3203208436] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP request > read tcp 127.0.0.1:1080->127.0.0.1:6070: wsarecv: An existing connection was forcibly closed by the remote host. 2020/03/26 10:59:28 [Info] [3203208436] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [3203208436] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [3203208436] v2ray.com/core/common/mux: failed to write first payload > io: read/write on closed pipe 2020/03/26 10:59:28 [Info] [2296761241] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: failed to read request > read tcp 127.0.0.1:1080->127.0.0.1:6072: wsarecv: An existing connection was forcibly closed by the remote host. 2020/03/26 10:59:28 [Info] [1197295300] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [1197295300] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP request > read tcp 127.0.0.1:1080->127.0.0.1:6071: wsarecv: An established connection was aborted by the software in your host machine. 2020/03/26 10:59:28 [Info] [1197295300] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [1197295300] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [1197295300] v2ray.com/core/common/mux: failed to write first payload > io: read/write on closed pipe 2020/03/26 10:59:28 [Info] [2589113787] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [3649604720] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [1617213082] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [2589113787] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:28 [Info] [2589113787] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [2589113787] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [1617213082] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:28 [Info] [1617213082] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [1617213082] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [3649604720] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:28 [Info] [3649604720] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [3649604720] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [2207050369] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: insufficient header > EOF 2020/03/26 10:59:28 [Info] [4248606992] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: failed to read request > read tcp 127.0.0.1:1080->127.0.0.1:6077: wsarecv: An existing connection was forcibly closed by the remote host. 2020/03/26 10:59:28 [Info] [3269277207] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [3269277207] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:28 [Info] [3269277207] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [3269277207] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [1022471856] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [1022471856] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:28 [Info] [1022471856] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [1022471856] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [1764019258] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [1764019258] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:28 [Info] [1764019258] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [1764019258] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [1711534910] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [1557941043] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [1711534910] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:28 [Info] [1711534910] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [1711534910] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [611801486] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [1557941043] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:28 [Info] [1557941043] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [1557941043] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [611801486] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:28 [Info] [611801486] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [611801486] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [2073919715] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [3439331798] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [2120846518] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [2073919715] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:28 [Info] [2073919715] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [2073919715] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [1762556096] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [2585463231] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [1762556096] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP request > read tcp 127.0.0.1:1080->127.0.0.1:6085: wsarecv: An existing connection was forcibly closed by the remote host. 2020/03/26 10:59:28 [Info] [1762556096] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [1762556096] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [1762556096] v2ray.com/core/common/mux: failed to write first payload > io: read/write on closed pipe 2020/03/26 10:59:28 [Info] [2120846518] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:28 [Info] [2120846518] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [2120846518] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [3439331798] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:28 [Info] [3439331798] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [3439331798] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [2585463231] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:28 [Info] [2585463231] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [2585463231] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [418390990] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [3922193412] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [418390990] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:28 [Info] [418390990] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [418390990] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [3496694499] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [3922193412] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:28 [Info] [3922193412] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [3922193412] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [3496694499] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:28 [Info] [3496694499] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [3496694499] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [3023362549] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [3023362549] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:28 [Info] [3023362549] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [3023362549] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [3006263763] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [2300258119] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [3006263763] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:28 [Info] [3006263763] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [3006263763] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [2300258119] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:28 [Info] [2300258119] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [2300258119] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [2351361140] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [2351361140] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:28 [Info] [2351361140] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [2351361140] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:28 [Info] [1194513714] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [1194513714] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:28 [Info] [1194513714] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [1194513714] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [3009556679] v2ray.com/core/proxy/socks: TCP Connect request to tcp:lh6.googleusercontent.com:443 2020/03/26 10:59:28 [Info] [3009556679] v2ray.com/core/app/dispatcher: sniffed domain: lh6.googleusercontent.com 2020/03/26 10:59:28 [Info] [3009556679] v2ray.com/core/app/dispatcher: default route for tcp:lh6.googleusercontent.com:443 2020/03/26 10:59:28 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 10:59:28 [Info] [3009556679] v2ray.com/core/common/mux: dispatching request to tcp:lh6.googleusercontent.com:443 2020/03/26 10:59:28 [Info] [1794113059] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [1794113059] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:28 [Info] [1794113059] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:28 [Info] [1794113059] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:29 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 10:59:29 [Info] [2619450114] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:29 [Info] [2619450114] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:29 [Info] [2619450114] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:29 [Info] [2619450114] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:30 [Info] [3463486513] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:30 [Info] [3463486513] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:30 [Info] [3463486513] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:30 [Info] [3463486513] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:31 [Info] [1736107929] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 10:59:31 [Info] [1736107929] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 10:59:31 [Info] [1736107929] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 10:59:31 [Info] [1736107929] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 10:59:34 [Info] [4175489859] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:34 [Info] [4175489859] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:34 [Info] [4175489859] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:34 [Info] [4175489859] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:34 [Info] [4289452022] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:34 [Info] [4289452022] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:34 [Info] [4289452022] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:34 [Info] [4289452022] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:34 [Info] [3632195074] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:34 [Info] [1461824816] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:34 [Info] [3632195074] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:34 [Info] [3632195074] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:34 [Info] [3632195074] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:34 [Info] [1461824816] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:34 [Info] [1461824816] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:34 [Info] [1461824816] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:49 [Info] [1125001970] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:49 [Info] [1125001970] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:49 [Info] [1125001970] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:49 [Info] [1125001970] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:49 [Info] [2153870419] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:49 [Info] [2153870419] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:49 [Info] [2153870419] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:49 [Info] [2153870419] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:49 [Info] [4015508509] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:49 [Info] [4015508509] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:49 [Info] [4015508509] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:49 [Info] [4015508509] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:49 [Info] [2306764549] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 10:59:49 [Info] [2306764549] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 10:59:49 [Info] [2306764549] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 10:59:49 [Info] [2306764549] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 11:01:05 [Info] [3437567635] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-a5msen7s.googlevideo.com:443 2020/03/26 11:01:05 [Info] [3437567635] v2ray.com/core/app/dispatcher: sniffed domain: r2---sn-a5msen7s.googlevideo.com 2020/03/26 11:01:05 [Info] [3437567635] v2ray.com/core/app/dispatcher: default route for tcp:r2---sn-a5msen7s.googlevideo.com:443 2020/03/26 11:01:05 [Info] [3437567635] v2ray.com/core/common/mux: dispatching request to tcp:r2---sn-a5msen7s.googlevideo.com:443 2020/03/26 11:01:05 [Info] [3096054300] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-a5msen7s.googlevideo.com:443 2020/03/26 11:01:05 [Info] [3096054300] v2ray.com/core/app/dispatcher: sniffed domain: r2---sn-a5msen7s.googlevideo.com 2020/03/26 11:01:05 [Info] [3096054300] v2ray.com/core/app/dispatcher: default route for tcp:r2---sn-a5msen7s.googlevideo.com:443 2020/03/26 11:01:05 [Info] [3096054300] v2ray.com/core/common/mux: dispatching request to tcp:r2---sn-a5msen7s.googlevideo.com:443 2020/03/26 11:01:05 [Info] [3087774610] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/26 11:01:05 [Info] [3087774610] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/26 11:01:05 [Info] [3087774610] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/26 11:01:05 [Info] [3087774610] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/26 11:01:08 [Info] [1578575100] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 11:01:08 [Info] [1578575100] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 11:01:08 [Info] [1578575100] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 11:01:08 [Info] [1578575100] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 11:04:09 [Info] [706410765] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 11:04:09 [Info] [706410765] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 11:04:09 [Info] [706410765] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 11:04:09 [Info] [706410765] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 11:06:26 [Info] [3058251556] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 11:06:26 [Info] [3058251556] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 11:06:26 [Info] [3058251556] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 11:06:26 [Info] [3058251556] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 11:09:20 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 11:09:21 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 11:10:54 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 11:10:55 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 11:29:30 [Info] [1995888664] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 11:29:30 [Info] [1995888664] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 11:29:30 [Info] [1995888664] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 11:29:30 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 11:29:30 [Info] [1995888664] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 11:29:31 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 11:32:26 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 11:32:27 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 11:32:56 [Info] [1413574635] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 11:32:56 [Info] [1413574635] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 11:32:56 [Info] [1413574635] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 11:32:56 [Info] [1413574635] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 11:32:56 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 11:32:57 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 11:35:52 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 11:35:53 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 11:56:05 [Info] [2221613227] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 11:56:05 [Info] [2221613227] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 11:56:05 [Info] [2221613227] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 11:56:05 [Info] [2221613227] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 11:56:05 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 11:56:05 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 11:59:01 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 11:59:02 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 11:59:33 [Info] [1936452615] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 11:59:33 [Info] [1936452615] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 11:59:33 [Info] [1936452615] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 11:59:33 [Info] [1936452615] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 11:59:33 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 11:59:34 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 12:02:29 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 12:02:30 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 12:06:14 [Info] [3224450009] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 12:06:14 [Info] [3224450009] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 12:06:14 [Info] [3224450009] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 12:06:14 [Info] [3224450009] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 12:06:14 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 12:06:14 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 12:09:10 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 12:09:11 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 12:25:06 [Info] [1213869448] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.googleapis.com:443 2020/03/26 12:25:06 [Info] [1213869448] v2ray.com/core/app/dispatcher: sniffed domain: www.googleapis.com 2020/03/26 12:25:06 [Info] [1213869448] v2ray.com/core/app/dispatcher: default route for tcp:www.googleapis.com:443 2020/03/26 12:25:06 [Info] [1213869448] v2ray.com/core/common/mux: dispatching request to tcp:www.googleapis.com:443 2020/03/26 12:25:06 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 12:25:06 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 12:25:07 [Info] [1950654849] v2ray.com/core/proxy/socks: TCP Connect request to tcp:raw.githubusercontent.com:443 2020/03/26 12:25:07 [Info] [1950654849] v2ray.com/core/app/dispatcher: sniffed domain: raw.githubusercontent.com 2020/03/26 12:25:07 [Info] [1950654849] v2ray.com/core/app/dispatcher: default route for tcp:raw.githubusercontent.com:443 2020/03/26 12:25:07 [Info] [1950654849] v2ray.com/core/common/mux: dispatching request to tcp:raw.githubusercontent.com:443 2020/03/26 12:26:09 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF 2020/03/26 12:26:09 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 12:26:10 [Info] [1213869448] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 12:26:10 [Info] [1950654849] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 12:26:10 [Info] [1213869448] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 12:26:10 [Info] [1950654849] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 12:29:27 [Info] [684804430] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 12:29:27 [Info] [684804430] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 12:29:27 [Info] [684804430] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 12:29:27 [Info] [684804430] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 12:29:27 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 12:29:27 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 12:32:10 [Info] [743654023] v2ray.com/core/proxy/socks: TCP Connect request to tcp:raw.githubusercontent.com:443 2020/03/26 12:32:10 [Info] [743654023] v2ray.com/core/app/dispatcher: sniffed domain: raw.githubusercontent.com 2020/03/26 12:32:10 [Info] [743654023] v2ray.com/core/app/dispatcher: default route for tcp:raw.githubusercontent.com:443 2020/03/26 12:32:10 [Info] [743654023] v2ray.com/core/common/mux: dispatching request to tcp:raw.githubusercontent.com:443 2020/03/26 12:32:55 [Info] [1985281710] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 12:32:55 [Info] [1985281710] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 12:32:55 [Info] [1985281710] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 12:32:55 [Info] [1985281710] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 12:33:14 [Info] [2350200067] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 12:33:14 [Info] [2350200067] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 12:33:14 [Info] [2350200067] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 12:33:14 [Info] [2350200067] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 12:35:27 [Info] [254188402] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/26 12:35:27 [Info] [254188402] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/26 12:35:27 [Info] [254188402] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/26 12:35:27 [Info] [254188402] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/26 12:35:28 [Info] [4087987832] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/26 12:35:28 [Info] [4087987832] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/26 12:35:28 [Info] [4087987832] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/26 12:35:28 [Info] [4087987832] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/26 12:35:28 [Info] [492534147] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 12:35:28 [Info] [492534147] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 12:35:28 [Info] [492534147] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 12:35:28 [Info] [492534147] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 12:35:33 [Info] [3129317918] v2ray.com/core/proxy/socks: TCP Connect request to tcp:lh3.googleusercontent.com:443 2020/03/26 12:35:33 [Info] [3129317918] v2ray.com/core/app/dispatcher: sniffed domain: lh3.googleusercontent.com 2020/03/26 12:35:33 [Info] [3129317918] v2ray.com/core/app/dispatcher: default route for tcp:lh3.googleusercontent.com:443 2020/03/26 12:35:33 [Info] [3129317918] v2ray.com/core/common/mux: dispatching request to tcp:lh3.googleusercontent.com:443 2020/03/26 12:36:04 [Info] [492534147] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 12:36:04 [Info] [492534147] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 12:36:41 [Info] [2593806253] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/26 12:36:41 [Info] [2593806253] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/26 12:36:41 [Info] [2593806253] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/26 12:36:41 [Info] [2593806253] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/26 12:36:43 [Info] [3035897119] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:36:43 [Info] [3035897119] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknle.googlevideo.com 2020/03/26 12:36:43 [Info] [3035897119] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:36:43 [Info] [3035897119] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:36:43 [Info] [3299808202] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:36:43 [Info] [3299808202] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknle.googlevideo.com 2020/03/26 12:36:43 [Info] [3299808202] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:36:43 [Info] [3299808202] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:36:45 [Info] [168347120] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/26 12:36:45 [Info] [168347120] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/26 12:36:45 [Info] [168347120] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/26 12:36:45 [Info] [168347120] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/26 12:36:45 [Info] [2807753217] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/26 12:36:45 [Info] [2807753217] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/26 12:36:45 [Info] [2807753217] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/26 12:36:45 [Info] [2807753217] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/26 12:36:46 [Info] [2840393664] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i1.ytimg.com:443 2020/03/26 12:36:46 [Info] [2840393664] v2ray.com/core/app/dispatcher: sniffed domain: i1.ytimg.com 2020/03/26 12:36:46 [Info] [2840393664] v2ray.com/core/app/dispatcher: default route for tcp:i1.ytimg.com:443 2020/03/26 12:36:46 [Info] [2840393664] v2ray.com/core/common/mux: dispatching request to tcp:i1.ytimg.com:443 2020/03/26 12:36:47 [Info] [1836919060] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 12:36:47 [Info] [1836919060] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 12:36:47 [Info] [1836919060] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 12:36:47 [Info] [1836919060] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 12:36:47 [Info] [182338004] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 12:36:47 [Info] [182338004] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 12:36:47 [Info] [182338004] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 12:36:47 [Info] [182338004] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 12:41:49 [Info] [2606821320] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:41:49 [Info] [2606821320] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5msen76.googlevideo.com 2020/03/26 12:41:49 [Info] [2606821320] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:41:49 [Info] [2606821320] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:41:52 [Info] [437011218] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:41:52 [Info] [437011218] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5msen76.googlevideo.com 2020/03/26 12:41:52 [Info] [437011218] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:41:52 [Info] [437011218] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:42:01 [Info] [3509880455] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:42:01 [Info] [3509880455] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknle.googlevideo.com 2020/03/26 12:42:01 [Info] [3509880455] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:42:01 [Info] [3509880455] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:42:10 [Info] [743654023] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 12:42:10 [Info] [743654023] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 12:42:12 [Info] [3905799903] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:42:12 [Info] [3905799903] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5msen76.googlevideo.com 2020/03/26 12:42:12 [Info] [3905799903] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:42:12 [Info] [3905799903] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:42:12 [Info] [394430769] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:42:12 [Info] [394430769] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5msen76.googlevideo.com 2020/03/26 12:42:12 [Info] [394430769] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:42:12 [Info] [394430769] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:42:23 [Info] [1041263727] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:42:23 [Info] [1041263727] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5msen76.googlevideo.com 2020/03/26 12:42:23 [Info] [1041263727] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:42:23 [Info] [1041263727] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:42:23 [Info] [3891684955] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:42:23 [Info] [3891684955] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknle.googlevideo.com 2020/03/26 12:42:23 [Info] [3891684955] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:42:23 [Info] [3891684955] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:42:34 [Info] [428913099] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:42:34 [Info] [428913099] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknle.googlevideo.com 2020/03/26 12:42:34 [Info] [428913099] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:42:34 [Info] [428913099] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:42:34 [Info] [2021140729] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:42:34 [Info] [2021140729] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknle.googlevideo.com 2020/03/26 12:42:34 [Info] [2021140729] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:42:34 [Info] [2021140729] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:42:44 [Info] [2379609264] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:42:44 [Info] [2379609264] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5msen76.googlevideo.com 2020/03/26 12:42:44 [Info] [2379609264] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:42:44 [Info] [2379609264] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:42:51 [Info] [691674738] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:42:51 [Info] [691674738] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5msen76.googlevideo.com 2020/03/26 12:42:51 [Info] [691674738] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:42:51 [Info] [691674738] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:42:55 [Info] [4241456880] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:42:55 [Info] [4241456880] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5msen76.googlevideo.com 2020/03/26 12:42:55 [Info] [4241456880] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:42:55 [Info] [4241456880] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5msen76.googlevideo.com:443 2020/03/26 12:42:58 [Info] [2084326227] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 12:42:58 [Info] [2084326227] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 12:42:58 [Info] [2084326227] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 12:42:58 [Info] [2084326227] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 12:43:06 [Info] [2877630636] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:43:06 [Info] [2877630636] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknle.googlevideo.com 2020/03/26 12:43:06 [Info] [2877630636] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:43:06 [Info] [2877630636] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:43:12 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF 2020/03/26 12:43:12 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 12:43:13 [Info] [2877630636] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 12:43:13 [Info] [2084326227] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 12:43:13 [Info] [2877630636] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 12:43:13 [Info] [2084326227] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 12:43:13 [Info] [422546151] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:43:13 [Info] [422546151] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknle.googlevideo.com 2020/03/26 12:43:13 [Info] [422546151] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:43:13 [Info] [422546151] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:43:13 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 12:43:14 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 12:43:19 [Info] [91600086] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:43:19 [Info] [91600086] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknle.googlevideo.com 2020/03/26 12:43:19 [Info] [91600086] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:43:19 [Info] [91600086] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:43:38 [Info] [3103044405] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 12:43:38 [Info] [3103044405] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 12:43:38 [Info] [3103044405] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 12:43:38 [Info] [3103044405] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 12:44:08 [Info] [1931580104] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 12:44:08 [Info] [1931580104] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 12:44:08 [Info] [1931580104] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 12:44:08 [Info] [1931580104] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 12:46:18 [Info] [3743335035] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:46:18 [Info] [3743335035] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknle.googlevideo.com 2020/03/26 12:46:18 [Info] [3743335035] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:46:18 [Info] [3743335035] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:52:15 [Info] [3948861675] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 12:52:15 [Info] [3948861675] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 12:52:15 [Info] [3948861675] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 12:52:15 [Info] [3948861675] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 12:52:27 [Info] [484028641] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 12:52:27 [Info] [484028641] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 12:52:27 [Info] [484028641] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 12:52:27 [Info] [484028641] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 12:52:28 [Info] [673590029] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/26 12:52:28 [Info] [673590029] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/26 12:52:28 [Info] [673590029] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/26 12:52:28 [Info] [673590029] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/26 12:58:49 [Info] [922175134] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:58:49 [Info] [922175134] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknle.googlevideo.com 2020/03/26 12:58:49 [Info] [922175134] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 12:58:49 [Info] [922175134] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknle.googlevideo.com:443 2020/03/26 13:06:48 [Info] [3221004603] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:06:48 [Info] [3221004603] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5meknl7.googlevideo.com 2020/03/26 13:06:48 [Info] [3221004603] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:06:48 [Info] [3221004603] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:06:48 [Info] [3816730876] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:06:48 [Info] [3816730876] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5meknl7.googlevideo.com 2020/03/26 13:06:48 [Info] [3816730876] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:06:48 [Info] [3816730876] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:06:48 [Info] [1974581010] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:06:48 [Info] [1974581010] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:06:48 [Info] [1974581010] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:06:48 [Info] [1974581010] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:06:49 [Info] [2426718678] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 13:06:49 [Info] [2426718678] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 13:06:49 [Info] [2426718678] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 13:06:49 [Info] [2426718678] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 13:22:52 [Info] [2948206814] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:22:52 [Info] [2948206814] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:22:52 [Info] [2948206814] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:22:52 [Info] [2948206814] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:24:11 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > read tcp 192.168.235.123:10725->132.145.114.243:443: wsarecv: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2020/03/26 13:24:11 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 13:24:11 [Info] [3103044405] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 13:24:12 [Info] [3221004603] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 13:24:12 [Info] [3221004603] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 13:24:12 [Info] [3377004403] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:24:12 [Info] [3377004403] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5meknl7.googlevideo.com 2020/03/26 13:24:12 [Info] [3377004403] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:24:12 [Info] [3377004403] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:24:12 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 13:24:12 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 13:24:13 [Info] [3103044405] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 13:24:14 [Info] [1788497009] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:14 [Info] [1788497009] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5mlrn7l.googlevideo.com 2020/03/26 13:24:14 [Info] [1788497009] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:14 [Info] [1788497009] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:22 [Info] [1044046512] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:22 [Info] [1044046512] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5mlrn7l.googlevideo.com 2020/03/26 13:24:22 [Info] [1044046512] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:22 [Info] [1044046512] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:22 [Info] [1680656166] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:22 [Info] [1680656166] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5mlrn7l.googlevideo.com 2020/03/26 13:24:22 [Info] [1680656166] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:22 [Info] [1680656166] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:25 [Info] [3106505618] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 13:24:25 [Info] [3106505618] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 13:24:25 [Info] [3106505618] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 13:24:25 [Info] [3106505618] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 13:24:33 [Info] [728541299] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:24:33 [Info] [728541299] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5meknl7.googlevideo.com 2020/03/26 13:24:33 [Info] [728541299] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:24:33 [Info] [728541299] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:24:33 [Info] [347708131] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:24:33 [Info] [347708131] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5meknl7.googlevideo.com 2020/03/26 13:24:33 [Info] [347708131] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:24:33 [Info] [347708131] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:24:43 [Info] [776929700] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:24:43 [Info] [776929700] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5meknl7.googlevideo.com 2020/03/26 13:24:43 [Info] [776929700] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:24:43 [Info] [776929700] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:24:43 [Info] [2778154704] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:24:43 [Info] [2778154704] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5meknl7.googlevideo.com 2020/03/26 13:24:43 [Info] [2778154704] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:24:43 [Info] [2778154704] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:24:43 [Info] [1269412871] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:43 [Info] [1269412871] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5mlrn7l.googlevideo.com 2020/03/26 13:24:43 [Info] [1269412871] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:43 [Info] [1269412871] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:54 [Info] [876822334] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:54 [Info] [876822334] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5mlrn7l.googlevideo.com 2020/03/26 13:24:54 [Info] [876822334] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:54 [Info] [876822334] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:54 [Info] [174643948] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:54 [Info] [174643948] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5mlrn7l.googlevideo.com 2020/03/26 13:24:54 [Info] [174643948] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:54 [Info] [174643948] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:54 [Info] [3964300979] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:54 [Info] [3964300979] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5mlrn7l.googlevideo.com 2020/03/26 13:24:54 [Info] [3964300979] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:54 [Info] [3964300979] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:24:58 [Info] [1812709176] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 13:24:58 [Info] [1812709176] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 13:24:58 [Info] [1812709176] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 13:24:58 [Info] [1812709176] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 13:25:05 [Info] [2834985100] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:25:05 [Info] [2834985100] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5mlrn7l.googlevideo.com 2020/03/26 13:25:05 [Info] [2834985100] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:25:05 [Info] [2834985100] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:25:05 [Info] [3752683971] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:25:05 [Info] [1077617282] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:25:05 [Info] [3752683971] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5meknl7.googlevideo.com 2020/03/26 13:25:05 [Info] [3752683971] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:25:05 [Info] [3752683971] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:25:05 [Info] [1077617282] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5meknl7.googlevideo.com 2020/03/26 13:25:05 [Info] [1077617282] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:25:05 [Info] [1077617282] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:25:16 [Info] [1166157211] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:25:16 [Info] [3737216384] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:25:16 [Info] [1166157211] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5meknl7.googlevideo.com 2020/03/26 13:25:16 [Info] [1166157211] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:25:16 [Info] [1166157211] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:25:16 [Info] [4189691402] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:25:16 [Info] [3737216384] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5meknl7.googlevideo.com 2020/03/26 13:25:16 [Info] [3737216384] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:25:16 [Info] [3737216384] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:25:16 [Info] [4189691402] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5meknl7.googlevideo.com 2020/03/26 13:25:16 [Info] [4189691402] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:25:16 [Info] [4189691402] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:25:27 [Info] [1858935728] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:25:27 [Info] [1858935728] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5mlrn7l.googlevideo.com 2020/03/26 13:25:27 [Info] [1858935728] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:25:27 [Info] [1858935728] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:25:27 [Info] [3214292722] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:25:27 [Info] [3214292722] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5mlrn7l.googlevideo.com 2020/03/26 13:25:27 [Info] [3214292722] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:25:27 [Info] [3214292722] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:25:29 [Info] [2678588670] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 13:25:29 [Info] [2678588670] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 13:25:29 [Info] [2678588670] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 13:25:29 [Info] [2678588670] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 13:25:33 [Info] [3085468537] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:25:33 [Info] [3085468537] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5mlrn7l.googlevideo.com 2020/03/26 13:25:33 [Info] [3085468537] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:25:33 [Info] [3085468537] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:25:34 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF 2020/03/26 13:25:34 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 13:25:35 [Info] [2678588670] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 13:25:35 [Info] [3085468537] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 13:25:35 [Info] [3214292722] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 13:25:35 [Info] [1858935728] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 13:25:35 [Info] [3085468537] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 13:25:35 [Info] [1858935728] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 13:25:35 [Info] [2678588670] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 13:25:35 [Info] [3214292722] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 13:25:35 [Info] [1072063538] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 13:25:35 [Info] [1072063538] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 13:25:35 [Info] [1072063538] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 13:25:35 [Info] [1072063538] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 13:25:35 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 13:25:35 [Info] [3943943232] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:25:35 [Info] [3943943232] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5mlrn7l.googlevideo.com 2020/03/26 13:25:35 [Info] [3943943232] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:25:35 [Info] [3943943232] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:25:36 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 13:26:01 [Info] [2122918581] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:26:01 [Info] [2122918581] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5mlrn7l.googlevideo.com 2020/03/26 13:26:01 [Info] [2122918581] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:26:01 [Info] [2122918581] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5mlrn7l.googlevideo.com:443 2020/03/26 13:31:01 [Info] [1871188214] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:31:01 [Info] [1871188214] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5meknl7.googlevideo.com 2020/03/26 13:31:01 [Info] [1871188214] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:31:01 [Info] [1871188214] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5meknl7.googlevideo.com:443 2020/03/26 13:33:57 [Info] [3496705027] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-a5mlrn7y.googlevideo.com:443 2020/03/26 13:33:57 [Info] [3496705027] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-a5mlrn7y.googlevideo.com 2020/03/26 13:33:57 [Info] [3496705027] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-a5mlrn7y.googlevideo.com:443 2020/03/26 13:33:57 [Info] [3496705027] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-a5mlrn7y.googlevideo.com:443 2020/03/26 13:33:57 [Info] [2963950367] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-a5mlrn7y.googlevideo.com:443 2020/03/26 13:33:57 [Info] [2963950367] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-a5mlrn7y.googlevideo.com 2020/03/26 13:33:57 [Info] [2963950367] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-a5mlrn7y.googlevideo.com:443 2020/03/26 13:33:57 [Info] [2963950367] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-a5mlrn7y.googlevideo.com:443 2020/03/26 13:33:58 [Info] [940440927] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:33:58 [Info] [940440927] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:33:58 [Info] [940440927] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:33:58 [Info] [940440927] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:36:13 [Info] [3149398967] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-o097znlk.googlevideo.com:443 2020/03/26 13:36:13 [Info] [3149398967] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-o097znlk.googlevideo.com 2020/03/26 13:36:13 [Info] [3149398967] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-o097znlk.googlevideo.com:443 2020/03/26 13:36:13 [Info] [3149398967] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-o097znlk.googlevideo.com:443 2020/03/26 13:36:18 [Info] [332831625] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-o097znlk.googlevideo.com:443 2020/03/26 13:36:18 [Info] [332831625] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-o097znlk.googlevideo.com 2020/03/26 13:36:18 [Info] [332831625] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-o097znlk.googlevideo.com:443 2020/03/26 13:36:18 [Info] [332831625] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-o097znlk.googlevideo.com:443 2020/03/26 13:36:21 [Info] [3511999848] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-o097znlk.googlevideo.com:443 2020/03/26 13:36:21 [Info] [3511999848] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-o097znlk.googlevideo.com 2020/03/26 13:36:21 [Info] [3511999848] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-o097znlk.googlevideo.com:443 2020/03/26 13:36:21 [Info] [3511999848] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-o097znlk.googlevideo.com:443 2020/03/26 13:36:21 [Info] [1074906388] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-o097znlk.googlevideo.com:443 2020/03/26 13:36:21 [Info] [1074906388] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-o097znlk.googlevideo.com 2020/03/26 13:36:21 [Info] [1074906388] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-o097znlk.googlevideo.com:443 2020/03/26 13:36:21 [Info] [1074906388] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-o097znlk.googlevideo.com:443 2020/03/26 13:36:48 [Info] [2198825338] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/26 13:36:48 [Info] [2198825338] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/26 13:36:48 [Info] [2198825338] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/26 13:36:48 [Info] [2198825338] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/26 13:36:49 [Info] [609593326] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/26 13:36:49 [Info] [609593326] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-a5mlrn76.googlevideo.com 2020/03/26 13:36:49 [Info] [609593326] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/26 13:36:49 [Info] [609593326] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/26 13:36:49 [Info] [1220630294] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/26 13:36:49 [Info] [1220630294] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-a5mlrn76.googlevideo.com 2020/03/26 13:36:49 [Info] [1220630294] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/26 13:36:49 [Info] [1220630294] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/26 13:36:49 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 13:36:50 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 13:36:50 [Info] [2066019171] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:36:50 [Info] [2066019171] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:36:50 [Info] [2066019171] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:36:50 [Info] [2066019171] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:36:50 [Info] [2925958031] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 13:36:50 [Info] [2925958031] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 13:36:50 [Info] [2925958031] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 13:36:50 [Info] [2925958031] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 13:36:58 [Info] [3577787316] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-a5msen7z.googlevideo.com:443 2020/03/26 13:36:58 [Info] [3577787316] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-a5msen7z.googlevideo.com 2020/03/26 13:36:58 [Info] [3577787316] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-a5msen7z.googlevideo.com:443 2020/03/26 13:36:58 [Info] [3577787316] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-a5msen7z.googlevideo.com:443 2020/03/26 13:36:58 [Info] [2514705885] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-a5msen7z.googlevideo.com:443 2020/03/26 13:36:58 [Info] [2514705885] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-a5msen7z.googlevideo.com 2020/03/26 13:36:58 [Info] [2514705885] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-a5msen7z.googlevideo.com:443 2020/03/26 13:36:58 [Info] [2514705885] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-a5msen7z.googlevideo.com:443 2020/03/26 13:36:59 [Info] [839226520] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i1.ytimg.com:443 2020/03/26 13:36:59 [Info] [839226520] v2ray.com/core/app/dispatcher: sniffed domain: i1.ytimg.com 2020/03/26 13:36:59 [Info] [839226520] v2ray.com/core/app/dispatcher: default route for tcp:i1.ytimg.com:443 2020/03/26 13:36:59 [Info] [839226520] v2ray.com/core/common/mux: dispatching request to tcp:i1.ytimg.com:443 2020/03/26 13:37:00 [Info] [3782313025] v2ray.com/core/proxy/socks: TCP Connect request to tcp:lh3.googleusercontent.com:443 2020/03/26 13:37:00 [Info] [3782313025] v2ray.com/core/app/dispatcher: sniffed domain: lh3.googleusercontent.com 2020/03/26 13:37:00 [Info] [3782313025] v2ray.com/core/app/dispatcher: default route for tcp:lh3.googleusercontent.com:443 2020/03/26 13:37:00 [Info] [3782313025] v2ray.com/core/common/mux: dispatching request to tcp:lh3.googleusercontent.com:443 2020/03/26 13:37:13 [Info] [4258352092] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5m7lnlz.googlevideo.com:443 2020/03/26 13:37:13 [Info] [4258352092] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5m7lnlz.googlevideo.com 2020/03/26 13:37:13 [Info] [4258352092] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5m7lnlz.googlevideo.com:443 2020/03/26 13:37:13 [Info] [4258352092] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5m7lnlz.googlevideo.com:443 2020/03/26 13:37:13 [Info] [2233597751] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5m7lnlz.googlevideo.com:443 2020/03/26 13:37:13 [Info] [2233597751] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5m7lnlz.googlevideo.com 2020/03/26 13:37:13 [Info] [2233597751] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5m7lnlz.googlevideo.com:443 2020/03/26 13:37:13 [Info] [2233597751] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5m7lnlz.googlevideo.com:443 2020/03/26 13:37:19 [Info] [3926309957] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: failed to read request > read tcp 127.0.0.1:1080->127.0.0.1:12347: wsarecv: An existing connection was forcibly closed by the remote host. 2020/03/26 13:37:19 [Info] [4163643510] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: failed to read request > read tcp 127.0.0.1:1080->127.0.0.1:12348: wsarecv: An existing connection was forcibly closed by the remote host. 2020/03/26 13:39:08 [Info] [2313011851] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:39:08 [Info] [2313011851] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:39:08 [Info] [2313011851] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:39:08 [Info] [2313011851] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:41:08 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > read tcp 192.168.235.123:12320->132.145.114.243:443: wsarecv: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2020/03/26 13:41:08 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 13:41:09 [Info] [2313011851] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 13:41:10 [Info] [2313011851] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 13:41:26 [Info] [336762169] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:41:26 [Info] [336762169] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:41:26 [Info] [336762169] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:41:26 [Info] [336762169] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:48:33 [Info] [1845662086] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:48:33 [Info] [1845662086] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:48:33 [Info] [1845662086] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:48:33 [Info] [1845662086] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:48:33 [Info] [3938730531] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:48:33 [Info] [3938730531] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:48:33 [Info] [3938730531] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:48:33 [Info] [3938730531] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:48:33 [Info] [1819756840] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:48:33 [Info] [1819756840] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:48:33 [Info] [1819756840] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:48:33 [Info] [1819756840] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:48:42 [Info] [284003366] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:48:42 [Info] [284003366] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:48:42 [Info] [284003366] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:48:42 [Info] [284003366] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:48:42 [Info] [869454160] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:48:42 [Info] [869454160] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:48:42 [Info] [869454160] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:48:42 [Info] [869454160] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:48:42 [Info] [3503022213] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/26 13:48:42 [Info] [3503022213] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/26 13:48:42 [Info] [3503022213] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/26 13:48:42 [Info] [3503022213] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/26 13:48:44 [Info] [3640856477] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 13:48:44 [Info] [3640856477] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 13:48:44 [Info] [3640856477] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 13:48:44 [Info] [3640856477] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 13:48:45 [Info] [3230292694] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i1.ytimg.com:443 2020/03/26 13:48:45 [Info] [3230292694] v2ray.com/core/app/dispatcher: sniffed domain: i1.ytimg.com 2020/03/26 13:48:45 [Info] [3230292694] v2ray.com/core/app/dispatcher: default route for tcp:i1.ytimg.com:443 2020/03/26 13:48:45 [Info] [3230292694] v2ray.com/core/common/mux: dispatching request to tcp:i1.ytimg.com:443 2020/03/26 13:48:47 [Info] [2664756112] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: failed to read request > read tcp 127.0.0.1:1080->127.0.0.1:12782: wsarecv: An existing connection was forcibly closed by the remote host. 2020/03/26 13:49:08 [Info] [792995200] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:49:08 [Info] [792995200] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:49:08 [Info] [792995200] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:49:08 [Info] [792995200] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:49:17 [Info] [3529220480] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/26 13:49:17 [Info] [3529220480] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/26 13:49:17 [Info] [3529220480] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/26 13:49:17 [Info] [3529220480] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/26 13:51:41 [Info] [2102107101] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:51:41 [Info] [2102107101] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:51:41 [Info] [2102107101] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:51:41 [Info] [2102107101] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:09 [Info] [2300487682] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:09 [Info] [2300487682] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-n4v7sn7y.googlevideo.com 2020/03/26 13:56:09 [Info] [2300487682] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:09 [Info] [2300487682] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:14 [Info] [277737650] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:14 [Info] [277737650] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-n4v7sn7y.googlevideo.com 2020/03/26 13:56:14 [Info] [277737650] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:14 [Info] [277737650] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:14 [Info] v2ray.com/core/common/mux: failed to write to downstream. closing session 21 > io: read/write on closed pipe 2020/03/26 13:56:21 [Info] [887050972] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:21 [Info] [308229661] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:21 [Info] [887050972] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:56:21 [Info] [887050972] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:21 [Info] [887050972] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:21 [Info] [2501961518] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:21 [Info] [308229661] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:56:21 [Info] [308229661] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:21 [Info] [308229661] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:21 [Info] [2501961518] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:56:21 [Info] [2501961518] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:21 [Info] [2501961518] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:32 [Info] [732673704] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:32 [Info] [732673704] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-n4v7sn7y.googlevideo.com 2020/03/26 13:56:32 [Info] [732673704] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:32 [Info] [732673704] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:32 [Info] [2710511906] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:32 [Info] [2821508560] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:32 [Info] [2710511906] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-n4v7sn7y.googlevideo.com 2020/03/26 13:56:32 [Info] [2710511906] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:32 [Info] [2710511906] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:32 [Info] [2821508560] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-n4v7sn7y.googlevideo.com 2020/03/26 13:56:32 [Info] [2821508560] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:32 [Info] [2821508560] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:43 [Info] [4210822747] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:43 [Info] [4210822747] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-n4v7sn7y.googlevideo.com 2020/03/26 13:56:43 [Info] [4210822747] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:43 [Info] [4210822747] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:43 [Info] [3015249671] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:43 [Info] [1724521275] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:43 [Info] [3015249671] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-n4v7sn7y.googlevideo.com 2020/03/26 13:56:43 [Info] [3015249671] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:43 [Info] [3015249671] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:56:43 [Info] [1724521275] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:56:43 [Info] [1724521275] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:43 [Info] [1724521275] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:54 [Info] [936001749] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:54 [Info] [936001749] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:56:54 [Info] [936001749] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:54 [Info] [936001749] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:54 [Info] [171440178] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:54 [Info] [2124793005] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:54 [Info] [171440178] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:56:54 [Info] [171440178] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:54 [Info] [171440178] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:54 [Info] [2124793005] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:56:54 [Info] [2124793005] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:56:54 [Info] [2124793005] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:57:05 [Info] [2961843174] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:57:05 [Info] [2961843174] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:57:05 [Info] [2961843174] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:57:05 [Info] [2961843174] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:57:05 [Info] [2728442383] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:57:05 [Info] [2728442383] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-n4v7sn7y.googlevideo.com 2020/03/26 13:57:05 [Info] [2728442383] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:57:05 [Info] [2728442383] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:57:11 [Info] [4016218688] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:57:11 [Info] [4016218688] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-n4v7sn7y.googlevideo.com 2020/03/26 13:57:11 [Info] [4016218688] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:57:11 [Info] [4016218688] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:57:15 [Info] [1288782563] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:57:15 [Info] [1288782563] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-n4v7sn7y.googlevideo.com 2020/03/26 13:57:15 [Info] [1288782563] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:57:15 [Info] [1288782563] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:57:19 [Info] [2901891155] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 13:57:19 [Info] [2901891155] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 13:57:19 [Info] [2901891155] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 13:57:19 [Info] [2901891155] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 13:57:26 [Info] [3139848096] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:57:26 [Info] [3139848096] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:57:26 [Info] [3139848096] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:57:26 [Info] [3139848096] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:57:37 [Info] [2271133549] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:57:37 [Info] [2271133549] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-n4v7sn7y.googlevideo.com 2020/03/26 13:57:37 [Info] [2271133549] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:57:37 [Info] [2271133549] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:57:38 [Info] [2133063369] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:57:38 [Info] [2133063369] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-n4v7sn7y.googlevideo.com 2020/03/26 13:57:38 [Info] [2133063369] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:57:38 [Info] [2133063369] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:57:48 [Info] [746113640] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:57:48 [Info] [746113640] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:57:48 [Info] [746113640] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:57:48 [Info] [746113640] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:57:58 [Info] [207637588] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 13:57:58 [Info] [207637588] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 13:57:58 [Info] [207637588] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 13:57:58 [Info] [207637588] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 13:57:58 [Info] [3188987892] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:57:58 [Info] [3188987892] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:57:58 [Info] [3188987892] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:57:58 [Info] [3188987892] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:58:05 [Info] [3672555797] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:58:05 [Info] [3672555797] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:58:05 [Info] [3672555797] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:58:05 [Info] [3672555797] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:58:09 [Info] [496290094] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:58:09 [Info] [496290094] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-n4v7sn7y.googlevideo.com 2020/03/26 13:58:09 [Info] [496290094] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:58:09 [Info] [496290094] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:58:14 [Info] [2832345357] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:58:14 [Info] [2832345357] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:58:14 [Info] [2832345357] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:58:14 [Info] [2832345357] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:58:14 [Info] [4025577367] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:58:14 [Info] [4025577367] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:58:14 [Info] [4025577367] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:58:14 [Info] [4025577367] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:58:18 [Info] [3121593563] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:58:18 [Info] [3121593563] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:58:18 [Info] [3121593563] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:58:18 [Info] [3121593563] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:58:19 [Info] [2712295333] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:58:19 [Info] [2712295333] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:58:19 [Info] [2712295333] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:58:19 [Info] [2712295333] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:58:20 [Info] [1150411935] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:58:20 [Info] [1150411935] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:58:20 [Info] [1150411935] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:58:20 [Info] [1150411935] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:58:21 [Info] [3297217657] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:58:21 [Info] [3297217657] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:58:21 [Info] [3297217657] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:58:21 [Info] [3297217657] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:58:24 [Info] [1621353297] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:58:24 [Info] [1621353297] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:58:24 [Info] [1621353297] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:58:24 [Info] [1621353297] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:58:25 [Info] [1721387593] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:58:25 [Info] [1721387593] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:58:25 [Info] [1721387593] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:58:25 [Info] [1721387593] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:58:25 [Info] [2777588198] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:58:25 [Info] [2777588198] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:58:25 [Info] [2777588198] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:58:25 [Info] [2777588198] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:58:29 [Info] [808864758] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 13:58:29 [Info] [808864758] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 13:58:29 [Info] [808864758] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 13:58:29 [Info] [808864758] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 13:58:31 [Info] [2097460324] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:58:31 [Info] [2097460324] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-n4v7sn7y.googlevideo.com 2020/03/26 13:58:31 [Info] [2097460324] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:58:31 [Info] [2097460324] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:58:31 [Info] [1350193995] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:58:31 [Info] [1350193995] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-n4v7sn7y.googlevideo.com 2020/03/26 13:58:31 [Info] [1350193995] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:58:31 [Info] [1350193995] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:58:37 [Debug] v2ray.com/core/app/log: Logger started 2020/03/26 13:58:37 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 127.0.0.1:1183 2020/03/26 13:58:37 [Info] v2ray.com/core/transport/internet/tcp: listening TCP on 127.0.0.1:1183 2020/03/26 13:58:37 [Warning] v2ray.com/core: V2Ray 4.23.1 started 2020/03/26 13:58:38 [Info] [1516049327] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest-sgp1.digitalocean.com] with URL [http://speedtest-sgp1.digitalocean.com/10mb.test] 2020/03/26 13:58:38 [Info] [1516049327] v2ray.com/core/app/dispatcher: taking detour [proxy1183] for [tcp:speedtest-sgp1.digitalocean.com:80] 2020/03/26 13:58:38 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 13:58:38 [Info] [1516049327] v2ray.com/core/common/mux: dispatching request to tcp:speedtest-sgp1.digitalocean.com:80 2020/03/26 13:58:38 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 13:58:42 [Info] [1858311917] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:58:42 [Info] [1858311917] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-n4v7sn7y.googlevideo.com 2020/03/26 13:58:42 [Info] [1858311917] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:58:42 [Info] [1858311917] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:58:42 [Info] [1552910944] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:58:42 [Info] [1552910944] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:58:42 [Info] [1552910944] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:58:42 [Info] [1552910944] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:58:46 [Info] [4032769054] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:58:46 [Info] [4032769054] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:58:46 [Info] [4032769054] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:58:46 [Info] [4032769054] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:58:50 [Info] [1588602258] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:58:50 [Info] [1588602258] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:58:50 [Info] [1588602258] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:58:50 [Info] [1588602258] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:58:53 [Info] [3455938112] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:58:53 [Info] [3455938112] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:58:53 [Info] [3455938112] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:58:53 [Info] [3455938112] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:58:57 [Info] [1729387684] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 13:58:57 [Info] [1729387684] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 13:58:57 [Info] [1729387684] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 13:58:57 [Info] [1729387684] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 13:59:02 [Info] [4286698233] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:59:02 [Info] [4286698233] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:59:02 [Info] [4286698233] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:59:02 [Info] [4286698233] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:59:02 [Info] [767592247] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/26 13:59:02 [Info] [767592247] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/26 13:59:02 [Info] [767592247] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/26 13:59:02 [Info] [767592247] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/26 13:59:03 [Info] [2417266165] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:59:03 [Info] [2417266165] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:59:03 [Info] [2417266165] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:59:03 [Info] [2417266165] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:59:03 [Info] [215614273] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:59:03 [Info] [215614273] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-n4v7sn7y.googlevideo.com 2020/03/26 13:59:03 [Info] [215614273] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:59:03 [Info] [215614273] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:59:03 [Info] [1214666186] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:59:03 [Info] [1214666186] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:59:03 [Info] [1214666186] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:59:03 [Info] [1214666186] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:59:07 [Info] [2273408536] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:59:07 [Info] [2273408536] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:59:07 [Info] [2273408536] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:59:07 [Info] [2273408536] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:59:10 [Info] [1761169750] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:59:10 [Info] [1761169750] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:59:10 [Info] [1761169750] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:59:10 [Info] [1761169750] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:59:11 [Info] [926453664] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:59:11 [Info] [926453664] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:59:11 [Info] [926453664] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:59:11 [Info] [926453664] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:59:12 [Info] [1513849314] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:59:12 [Info] [1513849314] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:59:12 [Info] [1513849314] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:59:12 [Info] [1513849314] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:59:13 [Info] [3714608185] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:59:13 [Info] [3714608185] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:59:13 [Info] [3714608185] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:59:13 [Info] [3714608185] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:59:14 [Info] [3771771487] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:59:14 [Info] [3771771487] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-n4v7sn7y.googlevideo.com 2020/03/26 13:59:14 [Info] [3771771487] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:59:14 [Info] [3771771487] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:59:17 [Info] [690074031] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:59:17 [Info] [690074031] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:59:17 [Info] [690074031] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:59:17 [Info] [690074031] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:59:25 [Info] [1420034827] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:59:25 [Info] [1420034827] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:59:25 [Info] [1420034827] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:59:25 [Info] [1420034827] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:59:29 [Info] [3132135999] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 13:59:29 [Info] [3132135999] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 13:59:29 [Info] [3132135999] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 13:59:29 [Info] [3132135999] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 13:59:32 [Info] [3182221032] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:59:32 [Info] [3182221032] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:59:32 [Info] [3182221032] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:59:32 [Info] [3182221032] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:59:32 [Info] [1676109457] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:59:32 [Info] [1676109457] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:59:32 [Info] [1676109457] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:59:32 [Info] [1676109457] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:59:32 [Info] [1648072165] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:59:32 [Info] [1648072165] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5msen7l.googlevideo.com 2020/03/26 13:59:32 [Info] [1648072165] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:59:32 [Info] [1648072165] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5msen7l.googlevideo.com:443 2020/03/26 13:59:33 [Info] [3492560497] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:59:33 [Info] [3492560497] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:59:33 [Info] [3492560497] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:59:33 [Info] [3492560497] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:59:33 [Info] [867388947] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:59:33 [Info] [867388947] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:59:33 [Info] [867388947] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:59:33 [Info] [867388947] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:59:34 [Info] [3549298497] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:59:34 [Info] [3549298497] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:59:34 [Info] [3549298497] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:59:34 [Info] [3549298497] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:59:34 [Info] [2399979252] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:59:34 [Info] [2399979252] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:59:34 [Info] [2399979252] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:59:34 [Info] [2399979252] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:59:36 [Info] [3112532595] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:59:36 [Info] [3112532595] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:59:36 [Info] [3112532595] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:59:36 [Info] [3112532595] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 13:59:43 [Info] [2667273658] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:59:43 [Info] [2667273658] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-n4v7sn7y.googlevideo.com 2020/03/26 13:59:43 [Info] [2667273658] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:59:43 [Info] [2667273658] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:59:43 [Info] [1165832027] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:59:43 [Info] [1165832027] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-n4v7sn7y.googlevideo.com 2020/03/26 13:59:43 [Info] [1165832027] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:59:43 [Info] [1165832027] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-n4v7sn7y.googlevideo.com:443 2020/03/26 13:59:46 [Info] [718263018] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 13:59:46 [Info] [718263018] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 13:59:46 [Info] [718263018] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 13:59:46 [Info] [718263018] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 13:59:52 [Info] [2514478243] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 13:59:52 [Info] [2514478243] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 13:59:52 [Info] [2514478243] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 13:59:52 [Info] [2514478243] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 13:59:55 [Info] [3050566347] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 13:59:55 [Info] [3050566347] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 13:59:55 [Info] [3050566347] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 13:59:55 [Info] [3050566347] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 14:00:00 [Info] [3940037348] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 14:00:00 [Info] [3940037348] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 14:00:00 [Info] [3940037348] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 14:00:00 [Info] [3940037348] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 14:00:09 [Info] [2065511381] v2ray.com/core/proxy/socks: TCP Connect request to tcp:play.google.com:443 2020/03/26 14:00:09 [Info] [2065511381] v2ray.com/core/app/dispatcher: sniffed domain: play.google.com 2020/03/26 14:00:09 [Info] [2065511381] v2ray.com/core/app/dispatcher: default route for tcp:play.google.com:443 2020/03/26 14:00:09 [Info] [2065511381] v2ray.com/core/common/mux: dispatching request to tcp:play.google.com:443 2020/03/26 14:00:10 [Info] [2476786900] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 14:00:10 [Info] [2476786900] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 14:00:10 [Info] [2476786900] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 14:00:10 [Info] [2476786900] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 14:00:22 [Info] [2516137125] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 14:00:22 [Info] [2516137125] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 14:00:22 [Info] [2516137125] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 14:00:22 [Info] [2516137125] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 14:00:23 [Info] [3309579206] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 14:00:23 [Info] [3309579206] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 14:00:23 [Info] [3309579206] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 14:00:23 [Info] [3309579206] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 14:00:23 [Info] [865509958] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 14:00:23 [Info] [865509958] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP request > read tcp 127.0.0.1:1080->127.0.0.1:13622: wsarecv: An existing connection was forcibly closed by the remote host. 2020/03/26 14:00:23 [Info] [865509958] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 14:00:23 [Info] [865509958] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 14:00:23 [Info] [865509958] v2ray.com/core/common/mux: failed to write first payload > io: read/write on closed pipe 2020/03/26 14:00:23 [Info] [3118150359] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 14:00:23 [Info] [3118150359] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 14:00:23 [Info] [3118150359] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 14:00:23 [Info] [3118150359] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 14:00:23 [Info] [2338263073] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 14:00:23 [Info] [2338263073] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 14:00:23 [Info] [2338263073] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 14:00:23 [Info] [2338263073] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 14:00:40 [Info] [3933371387] v2ray.com/core/proxy/socks: TCP Connect request to tcp:play.google.com:443 2020/03/26 14:00:40 [Info] [3933371387] v2ray.com/core/app/dispatcher: sniffed domain: play.google.com 2020/03/26 14:00:40 [Info] [3933371387] v2ray.com/core/app/dispatcher: default route for tcp:play.google.com:443 2020/03/26 14:00:40 [Info] [3933371387] v2ray.com/core/common/mux: dispatching request to tcp:play.google.com:443 2020/03/26 14:00:47 [Info] [2099766964] v2ray.com/core/proxy/socks: TCP Connect request to tcp:play.google.com:443 2020/03/26 14:00:47 [Info] [2099766964] v2ray.com/core/app/dispatcher: sniffed domain: play.google.com 2020/03/26 14:00:47 [Info] [2099766964] v2ray.com/core/app/dispatcher: default route for tcp:play.google.com:443 2020/03/26 14:00:47 [Info] [2099766964] v2ray.com/core/common/mux: dispatching request to tcp:play.google.com:443 2020/03/26 14:01:15 [Info] [2683723982] v2ray.com/core/proxy/socks: TCP Connect request to tcp:play.google.com:443 2020/03/26 14:01:15 [Info] [2683723982] v2ray.com/core/app/dispatcher: sniffed domain: play.google.com 2020/03/26 14:01:15 [Info] [2683723982] v2ray.com/core/app/dispatcher: default route for tcp:play.google.com:443 2020/03/26 14:01:15 [Info] [2683723982] v2ray.com/core/common/mux: dispatching request to tcp:play.google.com:443 2020/03/26 14:01:31 [Info] [1269904786] v2ray.com/core/proxy/socks: TCP Connect request to tcp:github-production-release-asset-2e65be.s3.amazonaws.com:443 2020/03/26 14:01:31 [Info] [1269904786] v2ray.com/core/app/dispatcher: sniffed domain: github-production-release-asset-2e65be.s3.amazonaws.com 2020/03/26 14:01:31 [Info] [1269904786] v2ray.com/core/app/dispatcher: default route for tcp:github-production-release-asset-2e65be.s3.amazonaws.com:443 2020/03/26 14:01:31 [Info] [1269904786] v2ray.com/core/common/mux: dispatching request to tcp:github-production-release-asset-2e65be.s3.amazonaws.com:443 2020/03/26 14:01:47 [Info] [1795574394] v2ray.com/core/proxy/socks: TCP Connect request to tcp:play.google.com:443 2020/03/26 14:01:47 [Info] [1795574394] v2ray.com/core/app/dispatcher: sniffed domain: play.google.com 2020/03/26 14:01:47 [Info] [1795574394] v2ray.com/core/app/dispatcher: default route for tcp:play.google.com:443 2020/03/26 14:01:47 [Info] [1795574394] v2ray.com/core/common/mux: dispatching request to tcp:play.google.com:443 2020/03/26 14:02:14 [Info] [3555847806] v2ray.com/core/proxy/socks: TCP Connect request to tcp:github-production-release-asset-2e65be.s3.amazonaws.com:443 2020/03/26 14:02:14 [Info] [3555847806] v2ray.com/core/app/dispatcher: sniffed domain: github-production-release-asset-2e65be.s3.amazonaws.com 2020/03/26 14:02:14 [Info] [3555847806] v2ray.com/core/app/dispatcher: default route for tcp:github-production-release-asset-2e65be.s3.amazonaws.com:443 2020/03/26 14:02:14 [Info] [3555847806] v2ray.com/core/common/mux: dispatching request to tcp:github-production-release-asset-2e65be.s3.amazonaws.com:443 2020/03/26 14:02:54 [Info] [3060783291] v2ray.com/core/proxy/socks: TCP Connect request to tcp:play.google.com:443 2020/03/26 14:02:54 [Info] [3060783291] v2ray.com/core/app/dispatcher: sniffed domain: play.google.com 2020/03/26 14:02:54 [Info] [3060783291] v2ray.com/core/app/dispatcher: default route for tcp:play.google.com:443 2020/03/26 14:02:54 [Info] [3060783291] v2ray.com/core/common/mux: dispatching request to tcp:play.google.com:443 2020/03/26 14:03:27 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 14:03:27 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > io: read/write on closed pipe 2020/03/26 14:04:01 [Info] [3306096546] v2ray.com/core/proxy/socks: TCP Connect request to tcp:play.google.com:443 2020/03/26 14:04:01 [Info] [3306096546] v2ray.com/core/app/dispatcher: sniffed domain: play.google.com 2020/03/26 14:04:01 [Info] [3306096546] v2ray.com/core/app/dispatcher: default route for tcp:play.google.com:443 2020/03/26 14:04:01 [Info] [3306096546] v2ray.com/core/common/mux: dispatching request to tcp:play.google.com:443 2020/03/26 14:04:01 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 14:04:01 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 14:04:02 [Info] [2562370619] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/26 14:04:02 [Info] [2562370619] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/26 14:04:02 [Info] [2562370619] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/26 14:04:02 [Info] [2562370619] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/26 14:04:03 [Info] [2097643911] v2ray.com/core/proxy/socks: TCP Connect request to tcp:lh3.googleusercontent.com:443 2020/03/26 14:04:03 [Info] [2097643911] v2ray.com/core/app/dispatcher: sniffed domain: lh3.googleusercontent.com 2020/03/26 14:04:03 [Info] [2097643911] v2ray.com/core/app/dispatcher: default route for tcp:lh3.googleusercontent.com:443 2020/03/26 14:04:03 [Info] [2097643911] v2ray.com/core/common/mux: dispatching request to tcp:lh3.googleusercontent.com:443 2020/03/26 14:04:04 [Info] [3558908179] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.google.com:443 2020/03/26 14:04:04 [Info] [3558908179] v2ray.com/core/app/dispatcher: sniffed domain: www.google.com 2020/03/26 14:04:04 [Info] [3558908179] v2ray.com/core/app/dispatcher: default route for tcp:www.google.com:443 2020/03/26 14:04:04 [Info] [3558908179] v2ray.com/core/common/mux: dispatching request to tcp:www.google.com:443 2020/03/26 14:04:04 [Info] [1392146709] v2ray.com/core/proxy/socks: TCP Connect request to tcp:clients5.google.com:443 2020/03/26 14:04:04 [Info] [1392146709] v2ray.com/core/app/dispatcher: sniffed domain: clients5.google.com 2020/03/26 14:04:04 [Info] [1392146709] v2ray.com/core/app/dispatcher: default route for tcp:clients5.google.com:443 2020/03/26 14:04:04 [Info] [1392146709] v2ray.com/core/common/mux: dispatching request to tcp:clients5.google.com:443 2020/03/26 14:04:05 [Info] [373404778] v2ray.com/core/proxy/socks: TCP Connect request to tcp:books.google.com:443 2020/03/26 14:04:05 [Info] [373404778] v2ray.com/core/app/dispatcher: sniffed domain: books.google.com 2020/03/26 14:04:05 [Info] [373404778] v2ray.com/core/app/dispatcher: default route for tcp:books.google.com:443 2020/03/26 14:04:05 [Info] [373404778] v2ray.com/core/common/mux: dispatching request to tcp:books.google.com:443 2020/03/26 14:04:10 [Info] [2065015455] v2ray.com/core/proxy/socks: TCP Connect request to tcp:github-production-release-asset-2e65be.s3.amazonaws.com:443 2020/03/26 14:04:10 [Info] [2065015455] v2ray.com/core/app/dispatcher: sniffed domain: github-production-release-asset-2e65be.s3.amazonaws.com 2020/03/26 14:04:10 [Info] [2065015455] v2ray.com/core/app/dispatcher: default route for tcp:github-production-release-asset-2e65be.s3.amazonaws.com:443 2020/03/26 14:04:10 [Info] [2065015455] v2ray.com/core/common/mux: dispatching request to tcp:github-production-release-asset-2e65be.s3.amazonaws.com:443 2020/03/26 14:04:19 [Info] [3137122955] v2ray.com/core/proxy/socks: TCP Connect request to tcp:sb-ssl.google.com:443 2020/03/26 14:04:19 [Info] [3137122955] v2ray.com/core/app/dispatcher: sniffed domain: sb-ssl.google.com 2020/03/26 14:04:19 [Info] [3137122955] v2ray.com/core/app/dispatcher: default route for tcp:sb-ssl.google.com:443 2020/03/26 14:04:19 [Info] [3137122955] v2ray.com/core/common/mux: dispatching request to tcp:sb-ssl.google.com:443 2020/03/26 14:08:17 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 14:08:18 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 17:23:26 [Info] [1170420705] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 17:23:26 [Info] [1170420705] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 17:23:26 [Info] [1170420705] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 17:23:26 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 17:23:26 [Info] [1170420705] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 17:23:26 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 17:23:29 [Info] [819538926] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: insufficient header > EOF 2020/03/26 17:23:29 [Info] [3434061572] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/26 17:23:29 [Info] [3434061572] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/26 17:23:29 [Info] [3434061572] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/26 17:23:29 [Info] [3434061572] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/26 17:23:29 [Info] [300530842] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 17:23:29 [Info] [300530842] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 17:23:29 [Info] [300530842] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 17:23:29 [Info] [300530842] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 17:23:29 [Info] [2012507067] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/26 17:23:29 [Info] [2012507067] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/26 17:23:29 [Info] [2012507067] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/26 17:23:29 [Info] [2012507067] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/26 17:23:29 [Info] [1886987204] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 17:23:29 [Info] [1886987204] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 17:23:29 [Info] [1886987204] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 17:23:29 [Info] [1886987204] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 17:23:33 [Info] [636698215] v2ray.com/core/proxy/socks: TCP Connect request to tcp:lh3.googleusercontent.com:443 2020/03/26 17:23:33 [Info] [636698215] v2ray.com/core/app/dispatcher: sniffed domain: lh3.googleusercontent.com 2020/03/26 17:23:33 [Info] [636698215] v2ray.com/core/app/dispatcher: default route for tcp:lh3.googleusercontent.com:443 2020/03/26 17:23:33 [Info] [636698215] v2ray.com/core/common/mux: dispatching request to tcp:lh3.googleusercontent.com:443 2020/03/26 17:24:27 [Info] [936109555] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5m7lnlz.googlevideo.com:443 2020/03/26 17:24:27 [Info] [936109555] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5m7lnlz.googlevideo.com 2020/03/26 17:24:27 [Info] [936109555] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5m7lnlz.googlevideo.com:443 2020/03/26 17:24:27 [Info] [936109555] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5m7lnlz.googlevideo.com:443 2020/03/26 17:24:27 [Info] [2156226681] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5m7lnlz.googlevideo.com:443 2020/03/26 17:24:27 [Info] [2156226681] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5m7lnlz.googlevideo.com 2020/03/26 17:24:27 [Info] [2156226681] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5m7lnlz.googlevideo.com:443 2020/03/26 17:24:27 [Info] [2156226681] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5m7lnlz.googlevideo.com:443 2020/03/26 17:24:29 [Info] [335638339] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: failed to read request > read tcp 127.0.0.1:1080->127.0.0.1:5069: wsarecv: An existing connection was forcibly closed by the remote host. 2020/03/26 17:24:29 [Info] [4134180144] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/26 17:24:29 [Info] [4134180144] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/26 17:24:29 [Info] [4134180144] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/26 17:24:29 [Info] [4134180144] v2ray.com/core/common/mux: failed to write first payload > EOF 2020/03/26 17:24:45 [Info] [1187376588] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/26 17:24:45 [Info] [1187376588] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/26 17:24:45 [Info] [1187376588] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/26 17:24:45 [Info] [1187376588] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/26 17:26:18 [Info] [1221934753] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 17:26:18 [Info] [1221934753] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 17:26:18 [Info] [1221934753] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 17:26:18 [Info] [1221934753] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 17:26:18 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 17:26:18 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 17:28:50 [Info] [2715752089] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/26 17:28:50 [Info] [2715752089] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/26 17:28:50 [Info] [2715752089] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/26 17:28:50 [Info] [2715752089] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/26 17:31:19 [Info] [344837558] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 17:31:19 [Info] [344837558] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 17:31:19 [Info] [344837558] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 17:31:19 [Info] [344837558] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 17:31:19 [Info] [878175425] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 17:31:19 [Info] [878175425] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 17:31:19 [Info] [878175425] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 17:31:19 [Info] [878175425] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 17:31:47 [Info] [900799054] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/26 17:31:47 [Info] [900799054] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/26 17:31:47 [Info] [900799054] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/26 17:31:47 [Info] [900799054] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/26 17:31:47 [Info] [3988033469] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/26 17:31:47 [Info] [3988033469] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/26 17:31:47 [Info] [3988033469] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/26 17:31:47 [Info] [3988033469] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/26 17:34:49 [Info] [2945946888] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 17:34:49 [Info] [2945946888] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 17:34:49 [Info] [2945946888] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 17:34:49 [Info] [2945946888] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 17:34:50 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 17:34:50 [Info] [2766577760] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 17:34:50 [Info] [2766577760] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 17:34:50 [Info] [2766577760] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 17:34:50 [Info] [2766577760] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 17:34:51 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 17:36:53 [Info] [338822736] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5m7lnlz.googlevideo.com:443 2020/03/26 17:36:53 [Info] [338822736] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5m7lnlz.googlevideo.com 2020/03/26 17:36:53 [Info] [338822736] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5m7lnlz.googlevideo.com:443 2020/03/26 17:36:53 [Info] [338822736] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5m7lnlz.googlevideo.com:443 2020/03/26 17:45:25 [Info] [674590733] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/26 17:45:25 [Info] [674590733] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5meknsy.googlevideo.com 2020/03/26 17:45:25 [Info] [674590733] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/26 17:45:25 [Info] [674590733] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/26 17:45:25 [Info] [3991962534] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/26 17:45:25 [Info] [3991962534] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5meknsy.googlevideo.com 2020/03/26 17:45:25 [Info] [3991962534] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/26 17:45:25 [Info] [3991962534] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/26 17:45:26 [Info] [4249285438] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 17:45:26 [Info] [4249285438] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 17:45:26 [Info] [4249285438] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 17:45:26 [Info] [4249285438] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 17:45:26 [Info] [3503992497] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/26 17:45:26 [Info] [3503992497] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/26 17:45:26 [Info] [3503992497] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/26 17:45:26 [Info] [3503992497] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/26 17:48:43 [Info] [4026815119] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/26 17:48:43 [Info] [4026815119] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/26 17:48:43 [Info] [4026815119] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/26 17:48:43 [Info] [4026815119] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/26 17:53:01 [Info] [4182114003] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/26 17:53:01 [Info] [4182114003] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/26 17:53:01 [Info] [4182114003] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/26 17:53:01 [Info] [4182114003] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/26 17:53:16 [Info] [3170760252] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/26 17:53:16 [Info] [3170760252] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/26 17:53:16 [Info] [3170760252] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/26 17:53:16 [Info] [3170760252] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/26 17:57:50 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 17:57:51 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 18:18:23 [Info] [4148007140] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/26 18:18:23 [Info] [4148007140] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/26 18:18:23 [Info] [4148007140] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/26 18:18:23 [Info] [4148007140] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/26 18:18:23 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 18:18:23 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 18:18:39 [Info] [2418149117] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 18:18:39 [Info] [2418149117] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 18:18:39 [Info] [2418149117] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 18:18:39 [Info] [2418149117] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 18:19:04 [Info] [334383430] v2ray.com/core/proxy/socks: TCP Connect request to tcp:play.google.com:443 2020/03/26 18:19:04 [Info] [334383430] v2ray.com/core/app/dispatcher: sniffed domain: play.google.com 2020/03/26 18:19:04 [Info] [334383430] v2ray.com/core/app/dispatcher: default route for tcp:play.google.com:443 2020/03/26 18:19:04 [Info] [334383430] v2ray.com/core/common/mux: dispatching request to tcp:play.google.com:443 2020/03/26 18:19:05 [Info] [1082206550] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/26 18:19:05 [Info] [1082206550] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/26 18:19:05 [Info] [1082206550] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/26 18:19:05 [Info] [1082206550] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/26 18:19:05 [Info] [4223128982] v2ray.com/core/proxy/socks: TCP Connect request to tcp:lh3.googleusercontent.com:443 2020/03/26 18:19:05 [Info] [4223128982] v2ray.com/core/app/dispatcher: sniffed domain: lh3.googleusercontent.com 2020/03/26 18:19:05 [Info] [4223128982] v2ray.com/core/app/dispatcher: default route for tcp:lh3.googleusercontent.com:443 2020/03/26 18:19:05 [Info] [4223128982] v2ray.com/core/common/mux: dispatching request to tcp:lh3.googleusercontent.com:443 2020/03/26 18:19:06 [Info] [2114465117] v2ray.com/core/proxy/socks: TCP Connect request to tcp:apis.google.com:443 2020/03/26 18:19:06 [Info] [2114465117] v2ray.com/core/app/dispatcher: sniffed domain: apis.google.com 2020/03/26 18:19:06 [Info] [2114465117] v2ray.com/core/app/dispatcher: default route for tcp:apis.google.com:443 2020/03/26 18:19:06 [Info] [2114465117] v2ray.com/core/common/mux: dispatching request to tcp:apis.google.com:443 2020/03/26 18:19:10 [Info] [4050914992] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.google.com:443 2020/03/26 18:19:10 [Info] [4050914992] v2ray.com/core/app/dispatcher: sniffed domain: www.google.com 2020/03/26 18:19:10 [Info] [4050914992] v2ray.com/core/app/dispatcher: default route for tcp:www.google.com:443 2020/03/26 18:19:10 [Info] [4050914992] v2ray.com/core/common/mux: dispatching request to tcp:www.google.com:443 2020/03/26 18:19:10 [Info] [152957653] v2ray.com/core/proxy/socks: TCP Connect request to tcp:books.google.com:443 2020/03/26 18:19:10 [Info] [103682624] v2ray.com/core/proxy/socks: TCP Connect request to tcp:books.google.com:443 2020/03/26 18:19:10 [Info] [152957653] v2ray.com/core/app/dispatcher: sniffed domain: books.google.com 2020/03/26 18:19:10 [Info] [152957653] v2ray.com/core/app/dispatcher: default route for tcp:books.google.com:443 2020/03/26 18:19:10 [Info] [152957653] v2ray.com/core/common/mux: dispatching request to tcp:books.google.com:443 2020/03/26 18:19:10 [Info] [4034557608] v2ray.com/core/proxy/socks: TCP Connect request to tcp:books.google.com:443 2020/03/26 18:19:10 [Info] [1902300402] v2ray.com/core/proxy/socks: TCP Connect request to tcp:books.google.com:443 2020/03/26 18:19:10 [Info] [103682624] v2ray.com/core/app/dispatcher: sniffed domain: books.google.com 2020/03/26 18:19:10 [Info] [103682624] v2ray.com/core/app/dispatcher: default route for tcp:books.google.com:443 2020/03/26 18:19:10 [Info] [103682624] v2ray.com/core/common/mux: dispatching request to tcp:books.google.com:443 2020/03/26 18:19:10 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 18:19:10 [Info] [3763220628] v2ray.com/core/proxy/socks: TCP Connect request to tcp:books.google.com:443 2020/03/26 18:19:10 [Info] [3972356386] v2ray.com/core/proxy/socks: TCP Connect request to tcp:books.google.com:443 2020/03/26 18:19:10 [Info] [1902300402] v2ray.com/core/app/dispatcher: sniffed domain: books.google.com 2020/03/26 18:19:10 [Info] [1902300402] v2ray.com/core/app/dispatcher: default route for tcp:books.google.com:443 2020/03/26 18:19:10 [Info] [1902300402] v2ray.com/core/common/mux: dispatching request to tcp:books.google.com:443 2020/03/26 18:19:10 [Info] [4034557608] v2ray.com/core/app/dispatcher: sniffed domain: books.google.com 2020/03/26 18:19:10 [Info] [4034557608] v2ray.com/core/app/dispatcher: default route for tcp:books.google.com:443 2020/03/26 18:19:10 [Info] [4034557608] v2ray.com/core/common/mux: dispatching request to tcp:books.google.com:443 2020/03/26 18:19:10 [Info] [3763220628] v2ray.com/core/app/dispatcher: sniffed domain: books.google.com 2020/03/26 18:19:10 [Info] [3763220628] v2ray.com/core/app/dispatcher: default route for tcp:books.google.com:443 2020/03/26 18:19:10 [Info] [3763220628] v2ray.com/core/common/mux: dispatching request to tcp:books.google.com:443 2020/03/26 18:19:10 [Info] [3972356386] v2ray.com/core/app/dispatcher: sniffed domain: books.google.com 2020/03/26 18:19:10 [Info] [3972356386] v2ray.com/core/app/dispatcher: default route for tcp:books.google.com:443 2020/03/26 18:19:10 [Info] [3972356386] v2ray.com/core/common/mux: dispatching request to tcp:books.google.com:443 2020/03/26 18:19:11 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 18:19:19 [Info] [2114465117] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 18:19:19 [Info] [2114465117] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 18:19:28 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > read tcp 192.168.235.123:6776->132.145.114.243:443: wsarecv: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2020/03/26 18:19:28 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 18:19:29 [Info] [4050914992] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 18:19:29 [Info] [4223128982] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 18:19:29 [Info] [2418149117] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 18:19:29 [Info] [334383430] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 18:19:29 [Info] [4148007140] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 18:19:29 [Info] [1082206550] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 18:19:29 [Info] [4050914992] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 18:19:29 [Info] [2418149117] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 18:19:29 [Info] [334383430] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 18:19:29 [Info] [4148007140] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 18:19:29 [Info] [4223128982] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 18:19:29 [Info] [1082206550] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 18:19:29 [Info] [152957653] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 18:19:29 [Info] [152957653] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/26 18:19:29 [Info] [4075445656] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/26 18:19:29 [Info] [4075445656] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/26 18:19:29 [Info] [4075445656] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/26 18:19:29 [Info] [4075445656] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/26 18:19:29 [Info] [236446817] v2ray.com/core/proxy/socks: TCP Connect request to tcp:play.google.com:443 2020/03/26 18:19:29 [Info] [236446817] v2ray.com/core/app/dispatcher: sniffed domain: play.google.com 2020/03/26 18:19:29 [Info] [236446817] v2ray.com/core/app/dispatcher: default route for tcp:play.google.com:443 2020/03/26 18:19:29 [Info] [236446817] v2ray.com/core/common/mux: dispatching request to tcp:play.google.com:443 2020/03/26 18:19:29 [Info] [3168935624] v2ray.com/core/proxy/socks: TCP Connect request to tcp:play.google.com:443 2020/03/26 18:19:29 [Info] [3168935624] v2ray.com/core/app/dispatcher: sniffed domain: play.google.com 2020/03/26 18:19:29 [Info] [3168935624] v2ray.com/core/app/dispatcher: default route for tcp:play.google.com:443 2020/03/26 18:19:29 [Info] [3168935624] v2ray.com/core/common/mux: dispatching request to tcp:play.google.com:443 2020/03/26 18:19:29 [Info] [4179596313] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.google.com:443 2020/03/26 18:19:29 [Info] [4179596313] v2ray.com/core/app/dispatcher: sniffed domain: www.google.com 2020/03/26 18:19:29 [Info] [4179596313] v2ray.com/core/app/dispatcher: default route for tcp:www.google.com:443 2020/03/26 18:19:29 [Info] [4179596313] v2ray.com/core/common/mux: dispatching request to tcp:www.google.com:443 2020/03/26 18:19:29 [Info] [1584995797] v2ray.com/core/proxy/socks: TCP Connect request to tcp:play.google.com:443 2020/03/26 18:19:29 [Info] [2432417193] v2ray.com/core/proxy/socks: TCP Connect request to tcp:play.google.com:443 2020/03/26 18:19:29 [Info] [1584995797] v2ray.com/core/app/dispatcher: sniffed domain: play.google.com 2020/03/26 18:19:29 [Info] [1584995797] v2ray.com/core/app/dispatcher: default route for tcp:play.google.com:443 2020/03/26 18:19:29 [Info] [1584995797] v2ray.com/core/common/mux: dispatching request to tcp:play.google.com:443 2020/03/26 18:19:29 [Info] [2432417193] v2ray.com/core/app/dispatcher: sniffed domain: play.google.com 2020/03/26 18:19:29 [Info] [2432417193] v2ray.com/core/app/dispatcher: default route for tcp:play.google.com:443 2020/03/26 18:19:29 [Info] [2432417193] v2ray.com/core/common/mux: dispatching request to tcp:play.google.com:443 2020/03/26 18:19:30 [Info] [2130287610] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/26 18:19:30 [Info] [2130287610] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/26 18:19:30 [Info] [2130287610] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/26 18:19:30 [Info] [2130287610] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/26 18:19:30 [Info] [3930499804] v2ray.com/core/proxy/socks: TCP Connect request to tcp:apis.google.com:443 2020/03/26 18:19:30 [Info] [3930499804] v2ray.com/core/app/dispatcher: sniffed domain: apis.google.com 2020/03/26 18:19:30 [Info] [3930499804] v2ray.com/core/app/dispatcher: default route for tcp:apis.google.com:443 2020/03/26 18:19:30 [Info] [3930499804] v2ray.com/core/common/mux: dispatching request to tcp:apis.google.com:443 2020/03/26 18:19:30 [Info] [396645807] v2ray.com/core/proxy/socks: TCP Connect request to tcp:lh3.googleusercontent.com:443 2020/03/26 18:19:30 [Info] [396645807] v2ray.com/core/app/dispatcher: sniffed domain: lh3.googleusercontent.com 2020/03/26 18:19:30 [Info] [396645807] v2ray.com/core/app/dispatcher: default route for tcp:lh3.googleusercontent.com:443 2020/03/26 18:19:30 [Info] [396645807] v2ray.com/core/common/mux: dispatching request to tcp:lh3.googleusercontent.com:443 2020/03/26 18:19:36 [Info] [2263767944] v2ray.com/core/proxy/socks: TCP Connect request to tcp:ogs.google.com:443 2020/03/26 18:19:36 [Info] [2263767944] v2ray.com/core/app/dispatcher: sniffed domain: ogs.google.com 2020/03/26 18:19:36 [Info] [2263767944] v2ray.com/core/app/dispatcher: default route for tcp:ogs.google.com:443 2020/03/26 18:19:36 [Info] [2263767944] v2ray.com/core/common/mux: dispatching request to tcp:ogs.google.com:443 2020/03/26 18:19:37 [Info] [1018770185] v2ray.com/core/proxy/socks: TCP Connect request to tcp:ogs.google.com:443 2020/03/26 18:19:37 [Info] [4209939869] v2ray.com/core/proxy/socks: TCP Connect request to tcp:ogs.google.com:443 2020/03/26 18:19:37 [Info] [1018770185] v2ray.com/core/app/dispatcher: sniffed domain: ogs.google.com 2020/03/26 18:19:37 [Info] [1018770185] v2ray.com/core/app/dispatcher: default route for tcp:ogs.google.com:443 2020/03/26 18:19:37 [Info] [1018770185] v2ray.com/core/common/mux: dispatching request to tcp:ogs.google.com:443 2020/03/26 18:19:37 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 18:19:37 [Info] [4209939869] v2ray.com/core/app/dispatcher: sniffed domain: ogs.google.com 2020/03/26 18:19:37 [Info] [4209939869] v2ray.com/core/app/dispatcher: default route for tcp:ogs.google.com:443 2020/03/26 18:19:37 [Info] [4209939869] v2ray.com/core/common/mux: dispatching request to tcp:ogs.google.com:443 2020/03/26 18:19:37 [Info] [257935100] v2ray.com/core/proxy/socks: TCP Connect request to tcp:ogs.google.com:443 2020/03/26 18:19:37 [Info] [257935100] v2ray.com/core/app/dispatcher: sniffed domain: ogs.google.com 2020/03/26 18:19:37 [Info] [257935100] v2ray.com/core/app/dispatcher: default route for tcp:ogs.google.com:443 2020/03/26 18:19:37 [Info] [257935100] v2ray.com/core/common/mux: dispatching request to tcp:ogs.google.com:443 2020/03/26 18:19:37 [Info] [3830368545] v2ray.com/core/proxy/socks: TCP Connect request to tcp:ogs.google.com:443 2020/03/26 18:19:37 [Info] [3830368545] v2ray.com/core/app/dispatcher: sniffed domain: ogs.google.com 2020/03/26 18:19:37 [Info] [3830368545] v2ray.com/core/app/dispatcher: default route for tcp:ogs.google.com:443 2020/03/26 18:19:37 [Info] [3830368545] v2ray.com/core/common/mux: dispatching request to tcp:ogs.google.com:443 2020/03/26 18:19:38 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 18:20:48 [Info] [991920438] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 18:20:48 [Info] [991920438] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 18:20:48 [Info] [991920438] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 18:20:48 [Info] [991920438] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 18:20:50 [Info] [129150975] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/26 18:20:50 [Info] [129150975] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5meknsy.googlevideo.com 2020/03/26 18:20:50 [Info] [129150975] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/26 18:20:50 [Info] [129150975] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/26 18:22:21 [Info] [4225581246] v2ray.com/core/proxy/socks: TCP Connect request to tcp:lh3.googleusercontent.com:443 2020/03/26 18:22:21 [Info] [4225581246] v2ray.com/core/app/dispatcher: sniffed domain: lh3.googleusercontent.com 2020/03/26 18:22:21 [Info] [4225581246] v2ray.com/core/app/dispatcher: default route for tcp:lh3.googleusercontent.com:443 2020/03/26 18:22:21 [Info] [4225581246] v2ray.com/core/common/mux: dispatching request to tcp:lh3.googleusercontent.com:443 2020/03/26 18:22:38 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 18:22:39 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 18:23:48 [Info] [3449544839] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/26 18:23:48 [Info] [3449544839] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/26 18:23:48 [Info] [3449544839] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/26 18:23:48 [Info] [3449544839] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/26 18:23:50 [Info] [2377608141] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/26 18:23:50 [Info] [2377608141] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/26 18:23:50 [Info] [2377608141] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/26 18:23:50 [Info] [2377608141] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/26 18:23:51 [Info] [838972286] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/26 18:23:51 [Info] [838972286] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5meknsy.googlevideo.com 2020/03/26 18:23:51 [Info] [838972286] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/26 18:23:51 [Info] [838972286] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/26 18:25:51 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF 2020/03/26 18:25:51 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 18:25:58 [Info] [2377608141] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 18:25:58 [Info] [991920438] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/26 18:25:58 [Info] [991920438] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP request > io: read/write on closed pipe 2020/03/26 18:25:58 [Info] [2377608141] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP request > io: read/write on closed pipe 2020/03/26 18:45:26 [Info] [179534232] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 18:45:26 [Info] [179534232] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 18:45:26 [Info] [179534232] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 18:45:26 [Info] [179534232] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 18:45:26 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 18:45:27 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 18:48:22 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 18:48:23 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 18:53:39 [Info] [3603982377] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 18:53:39 [Info] [3603982377] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 18:53:39 [Info] [3603982377] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 18:53:39 [Info] [3603982377] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 18:53:39 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 18:53:39 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 18:56:35 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 18:56:36 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/26 19:20:05 [Info] [3743324765] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/26 19:20:05 [Info] [3743324765] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/26 19:20:05 [Info] [3743324765] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/26 19:20:05 [Info] [3743324765] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/26 19:20:05 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 19:20:06 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/26 19:20:21 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/26 19:20:22 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled

heham commented 4 years ago

以下为近27日的日志,服务器和端口号做了替换,其他未改动。

2020/03/27 08:36:22 [Info] [3926595639] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.googleapis.com:443 2020/03/27 08:36:22 [Info] [3926595639] v2ray.com/core/app/dispatcher: sniffed domain: www.googleapis.com 2020/03/27 08:36:22 [Info] [3926595639] v2ray.com/core/app/dispatcher: default route for tcp:www.googleapis.com:443 2020/03/27 08:36:22 [Info] [3926595639] v2ray.com/core/common/mux: dispatching request to tcp:www.googleapis.com:443 2020/03/27 08:36:22 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 08:36:23 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 08:36:24 [Info] [2347399386] v2ray.com/core/proxy/socks: TCP Connect request to tcp:raw.githubusercontent.com:443 2020/03/27 08:36:24 [Info] [2347399386] v2ray.com/core/app/dispatcher: sniffed domain: raw.githubusercontent.com 2020/03/27 08:36:24 [Info] [2347399386] v2ray.com/core/app/dispatcher: default route for tcp:raw.githubusercontent.com:443 2020/03/27 08:36:24 [Info] [2347399386] v2ray.com/core/common/mux: dispatching request to tcp:raw.githubusercontent.com:443 2020/03/27 08:36:31 [Info] [1214992465] v2ray.com/core/proxy/socks: TCP Connect request to tcp:raw.githubusercontent.com:443 2020/03/27 08:36:31 [Info] [1214992465] v2ray.com/core/app/dispatcher: sniffed domain: raw.githubusercontent.com 2020/03/27 08:36:31 [Info] [1214992465] v2ray.com/core/app/dispatcher: default route for tcp:raw.githubusercontent.com:443 2020/03/27 08:36:31 [Info] [1214992465] v2ray.com/core/common/mux: dispatching request to tcp:raw.githubusercontent.com:443 2020/03/27 08:36:56 [Info] [397925212] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 08:36:56 [Info] [397925212] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 08:36:56 [Info] [397925212] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 08:36:56 [Info] [397925212] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 08:36:58 [Info] [3071203470] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 08:36:58 [Info] [3071203470] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5meknsy.googlevideo.com 2020/03/27 08:36:58 [Info] [3071203470] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 08:36:58 [Info] [3071203470] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 08:36:58 [Info] [1496054609] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 08:36:58 [Info] [1496054609] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5meknsy.googlevideo.com 2020/03/27 08:36:58 [Info] [1496054609] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 08:36:58 [Info] [1496054609] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 08:36:58 [Info] [169680745] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/27 08:36:58 [Info] [169680745] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/27 08:36:58 [Info] [169680745] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/27 08:36:58 [Info] [169680745] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/27 08:37:00 [Info] [4163585692] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 08:37:00 [Info] [4163585692] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 08:37:00 [Info] [4163585692] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 08:37:00 [Info] [4163585692] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 08:37:00 [Info] [2406310159] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 08:37:00 [Info] [2406310159] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 08:37:00 [Info] [2406310159] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 08:37:00 [Info] [2406310159] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 08:37:01 [Info] [2715944650] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 08:37:01 [Info] [2715944650] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 08:37:01 [Info] [2715944650] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 08:37:01 [Info] [2715944650] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 08:37:03 [Info] [2172900367] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 08:37:03 [Info] [2172900367] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 08:37:03 [Info] [2172900367] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 08:37:03 [Info] [2172900367] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 08:37:03 [Info] [4098246455] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/27 08:37:03 [Info] [4098246455] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/27 08:37:03 [Info] [4098246455] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/27 08:37:03 [Info] [4098246455] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/27 08:37:04 [Info] [264573144] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 08:37:04 [Info] [264573144] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 08:37:04 [Info] [264573144] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 08:37:04 [Info] [264573144] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 08:41:26 [Info] [3701448877] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 08:41:26 [Info] [3701448877] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 08:41:26 [Info] [3701448877] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 08:41:26 [Info] [3701448877] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 08:46:25 [Info] [2347399386] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP response > io: read/write on closed pipe 2020/03/27 08:46:25 [Info] [2347399386] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 08:52:51 [Debug] v2ray.com/core/app/log: Logger started 2020/03/27 08:52:51 [Debug] v2ray.com/core/app/stats: create new counter inbound>>>proxy>>>traffic>>>uplink 2020/03/27 08:52:51 [Debug] v2ray.com/core/app/stats: create new counter inbound>>>proxy>>>traffic>>>downlink 2020/03/27 08:52:51 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 0.0.0.0:1080 2020/03/27 08:52:51 [Debug] v2ray.com/core/app/stats: create new counter inbound>>>api>>>traffic>>>uplink 2020/03/27 08:52:51 [Debug] v2ray.com/core/app/stats: create new counter inbound>>>api>>>traffic>>>downlink 2020/03/27 08:52:51 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 127.0.0.1:12019 2020/03/27 08:52:51 [Info] v2ray.com/core/transport/internet/tcp: listening TCP on 0.0.0.0:1080 2020/03/27 08:52:51 [Info] v2ray.com/core/transport/internet/udp: listening UDP on 0.0.0.0:1080 2020/03/27 08:52:51 [Info] v2ray.com/core/transport/internet/tcp: listening TCP on 127.0.0.1:12019 2020/03/27 08:52:51 [Warning] v2ray.com/core: V2Ray 4.23.1 started 2020/03/27 08:52:51 [Info] [460623834] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5msen7l.googlevideo.com:443 2020/03/27 08:52:51 [Info] [460623834] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5msen7l.googlevideo.com 2020/03/27 08:52:51 [Info] [460623834] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5msen7l.googlevideo.com:443 2020/03/27 08:52:51 [Info] [460623834] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5msen7l.googlevideo.com:443 2020/03/27 08:52:51 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 08:52:51 [Info] [4062099603] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5msen7l.googlevideo.com:443 2020/03/27 08:52:51 [Info] [4062099603] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5msen7l.googlevideo.com 2020/03/27 08:52:51 [Info] [4062099603] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5msen7l.googlevideo.com:443 2020/03/27 08:52:51 [Info] [4062099603] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5msen7l.googlevideo.com:443 2020/03/27 08:52:51 [Debug] [1587455747] v2ray.com/core/proxy/dokodemo: processing connection from: 127.0.0.1:12022 2020/03/27 08:52:51 [Info] [1587455747] v2ray.com/core/app/dispatcher: taking detour [api] for [tcp:127.0.0.1:0] 2020/03/27 08:52:51 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 08:52:53 [Info] [194838887] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 08:52:53 [Info] [194838887] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5meknsy.googlevideo.com 2020/03/27 08:52:53 [Info] [194838887] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 08:52:53 [Info] [194838887] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 08:53:27 [Info] [2947292885] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 08:53:27 [Info] [2947292885] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 08:53:27 [Info] [2947292885] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 08:53:27 [Info] [2947292885] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 08:56:19 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/27 08:56:20 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/27 08:57:18 [Info] [604714817] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 08:57:18 [Info] [604714817] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 08:57:18 [Info] [604714817] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 08:57:18 [Info] [604714817] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 08:57:18 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 08:57:19 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 08:57:22 [Info] [3098860913] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 08:57:22 [Info] [3098860913] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 08:57:22 [Info] [3098860913] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 08:57:22 [Info] [3098860913] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 09:01:50 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/27 09:01:51 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/27 09:06:49 [Info] [3084922443] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.googleapis.com:443 2020/03/27 09:06:49 [Info] [3084922443] v2ray.com/core/app/dispatcher: sniffed domain: www.googleapis.com 2020/03/27 09:06:49 [Info] [3084922443] v2ray.com/core/app/dispatcher: default route for tcp:www.googleapis.com:443 2020/03/27 09:06:49 [Info] [3084922443] v2ray.com/core/common/mux: dispatching request to tcp:www.googleapis.com:443 2020/03/27 09:06:49 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 09:06:50 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 09:06:52 [Info] [1475067989] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/27 09:06:52 [Info] [1475067989] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/27 09:06:52 [Info] [1475067989] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/27 09:06:52 [Info] [1475067989] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/27 09:06:52 [Info] [2038975748] v2ray.com/core/proxy/socks: TCP Connect request to tcp:raw.githubusercontent.com:443 2020/03/27 09:06:52 [Info] [2038975748] v2ray.com/core/app/dispatcher: sniffed domain: raw.githubusercontent.com 2020/03/27 09:06:52 [Info] [2038975748] v2ray.com/core/app/dispatcher: default route for tcp:raw.githubusercontent.com:443 2020/03/27 09:06:52 [Info] [2038975748] v2ray.com/core/common/mux: dispatching request to tcp:raw.githubusercontent.com:443 2020/03/27 09:07:01 [Info] [1572266358] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 09:07:01 [Info] [1572266358] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 09:07:01 [Info] [1572266358] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 09:07:01 [Info] [1572266358] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 09:07:02 [Info] [719268952] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 09:07:02 [Info] [719268952] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5meknsy.googlevideo.com 2020/03/27 09:07:02 [Info] [719268952] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 09:07:02 [Info] [719268952] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 09:15:50 [Info] [3971367653] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 09:15:50 [Info] [3971367653] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5meknsy.googlevideo.com 2020/03/27 09:15:50 [Info] [3971367653] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 09:15:50 [Info] [3971367653] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 09:16:52 [Info] [2038975748] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 09:16:52 [Info] [2038975748] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 09:20:09 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/27 09:20:10 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/27 09:22:21 [Debug] v2ray.com/core/app/log: Logger started 2020/03/27 09:22:21 [Debug] v2ray.com/core/app/stats: create new counter inbound>>>proxy>>>traffic>>>uplink 2020/03/27 09:22:21 [Debug] v2ray.com/core/app/stats: create new counter inbound>>>proxy>>>traffic>>>downlink 2020/03/27 09:22:21 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 0.0.0.0:1080 2020/03/27 09:22:21 [Debug] v2ray.com/core/app/stats: create new counter inbound>>>api>>>traffic>>>uplink 2020/03/27 09:22:21 [Debug] v2ray.com/core/app/stats: create new counter inbound>>>api>>>traffic>>>downlink 2020/03/27 09:22:21 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 127.0.0.1:1067 2020/03/27 09:22:21 [Info] v2ray.com/core/transport/internet/tcp: listening TCP on 0.0.0.0:1080 2020/03/27 09:22:21 [Info] v2ray.com/core/transport/internet/udp: listening UDP on 0.0.0.0:1080 2020/03/27 09:22:21 [Info] v2ray.com/core/transport/internet/tcp: listening TCP on 127.0.0.1:1067 2020/03/27 09:22:21 [Warning] v2ray.com/core: V2Ray 4.23.1 started 2020/03/27 09:22:21 [Debug] [3873271260] v2ray.com/core/proxy/dokodemo: processing connection from: 127.0.0.1:1070 2020/03/27 09:22:21 [Info] [3873271260] v2ray.com/core/app/dispatcher: taking detour [api] for [tcp:127.0.0.1:0] 2020/03/27 09:27:06 [Info] [1557026055] v2ray.com/core/proxy/socks: TCP Connect request to tcp:raw.githubusercontent.com:443 2020/03/27 09:27:06 [Info] [1557026055] v2ray.com/core/app/dispatcher: sniffed domain: raw.githubusercontent.com 2020/03/27 09:27:06 [Info] [1557026055] v2ray.com/core/app/dispatcher: default route for tcp:raw.githubusercontent.com:443 2020/03/27 09:27:06 [Info] [1557026055] v2ray.com/core/common/mux: dispatching request to tcp:raw.githubusercontent.com:443 2020/03/27 09:27:06 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 09:27:06 [Info] [1608506361] v2ray.com/core/proxy/socks: TCP Connect request to tcp:raw.githubusercontent.com:443 2020/03/27 09:27:06 [Info] [1608506361] v2ray.com/core/app/dispatcher: sniffed domain: raw.githubusercontent.com 2020/03/27 09:27:06 [Info] [1608506361] v2ray.com/core/app/dispatcher: default route for tcp:raw.githubusercontent.com:443 2020/03/27 09:27:06 [Info] [1608506361] v2ray.com/core/common/mux: dispatching request to tcp:raw.githubusercontent.com:443 2020/03/27 09:27:07 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 09:27:09 [Info] [1537373068] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 09:27:09 [Info] [1537373068] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 09:27:09 [Info] [1537373068] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 09:27:09 [Info] [1537373068] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 09:27:10 [Info] [2270288679] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 09:27:10 [Info] [2270288679] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5meknsy.googlevideo.com 2020/03/27 09:27:10 [Info] [2270288679] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 09:27:10 [Info] [2270288679] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 09:27:10 [Info] [3503536027] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 09:27:10 [Info] [3503536027] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5meknsy.googlevideo.com 2020/03/27 09:27:10 [Info] [3503536027] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 09:27:10 [Info] [3503536027] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 09:27:22 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/27 09:27:23 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/27 09:27:42 [Info] [398246991] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.googleapis.com:443 2020/03/27 09:27:42 [Info] [398246991] v2ray.com/core/app/dispatcher: sniffed domain: www.googleapis.com 2020/03/27 09:27:42 [Info] [398246991] v2ray.com/core/app/dispatcher: default route for tcp:www.googleapis.com:443 2020/03/27 09:27:42 [Info] [398246991] v2ray.com/core/common/mux: dispatching request to tcp:www.googleapis.com:443 2020/03/27 09:27:42 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 09:27:43 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 09:27:44 [Info] [3595305552] v2ray.com/core/proxy/socks: TCP Connect request to tcp:raw.githubusercontent.com:443 2020/03/27 09:27:44 [Info] [3595305552] v2ray.com/core/app/dispatcher: sniffed domain: raw.githubusercontent.com 2020/03/27 09:27:44 [Info] [3595305552] v2ray.com/core/app/dispatcher: default route for tcp:raw.githubusercontent.com:443 2020/03/27 09:27:44 [Info] [3595305552] v2ray.com/core/common/mux: dispatching request to tcp:raw.githubusercontent.com:443 2020/03/27 09:28:45 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF 2020/03/27 09:28:45 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/27 09:28:46 [Info] [3595305552] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 09:28:46 [Info] [398246991] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 09:28:46 [Info] [398246991] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 09:28:46 [Info] [3595305552] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 09:47:58 [Info] [2901941680] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 09:47:58 [Info] [3965311291] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 09:47:58 [Info] [3213626508] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 09:47:58 [Info] [2901941680] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 09:47:58 [Info] [2901941680] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 09:47:58 [Info] [2901941680] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 09:47:58 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 09:47:58 [Info] [1534796449] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/27 09:47:58 [Info] [3965311291] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 09:47:58 [Info] [3965311291] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 09:47:58 [Info] [3965311291] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 09:47:58 [Info] [3213626508] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 09:47:58 [Info] [3213626508] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 09:47:58 [Info] [3213626508] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 09:47:58 [Info] [1534796449] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/27 09:47:58 [Info] [1534796449] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/27 09:47:58 [Info] [1534796449] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/27 09:47:58 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 09:47:58 [Info] [4239603019] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 09:47:58 [Info] [4239603019] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 09:47:58 [Info] [4239603019] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 09:47:58 [Info] [4239603019] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 09:47:59 [Info] [832415511] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 09:47:59 [Info] [832415511] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5meknsy.googlevideo.com 2020/03/27 09:47:59 [Info] [832415511] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 09:47:59 [Info] [832415511] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 09:47:59 [Info] [2555204241] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 09:47:59 [Info] [2555204241] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5meknsy.googlevideo.com 2020/03/27 09:47:59 [Info] [2555204241] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 09:47:59 [Info] [2555204241] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 09:47:59 [Info] [3522922870] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 09:47:59 [Info] [700263972] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 09:47:59 [Info] [3522922870] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 09:47:59 [Info] [3522922870] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 09:47:59 [Info] [3522922870] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 09:47:59 [Info] [700263972] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 09:47:59 [Info] [700263972] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 09:47:59 [Info] [700263972] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 09:48:00 [Info] [1650655595] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 09:48:00 [Info] [1248603912] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 09:48:00 [Info] [1650655595] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 09:48:00 [Info] [1650655595] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 09:48:00 [Info] [1650655595] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 09:48:00 [Info] [1248603912] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 09:48:00 [Info] [1248603912] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 09:48:00 [Info] [1248603912] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 09:48:00 [Info] [4172519503] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: failed to read request > read tcp 127.0.0.1:1080->127.0.0.1:2193: wsarecv: An established connection was aborted by the software in your host machine. 2020/03/27 09:48:01 [Info] [821550036] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 09:48:01 [Info] [821550036] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 09:48:01 [Info] [821550036] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 09:48:01 [Info] [821550036] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 09:48:01 [Info] [3241235850] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 09:48:01 [Info] [3241235850] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 09:48:01 [Info] [3241235850] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 09:48:01 [Info] [3241235850] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 09:48:01 [Info] [297195262] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 09:48:01 [Info] [297195262] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 09:48:01 [Info] [297195262] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 09:48:01 [Info] [297195262] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 09:48:01 [Info] [2130774831] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 09:48:01 [Info] [2130774831] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 09:48:01 [Info] [2130774831] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 09:48:01 [Info] [2130774831] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 09:48:02 [Info] [1440014470] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 09:48:02 [Info] [1440014470] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 09:48:02 [Info] [1440014470] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 09:48:02 [Info] [1440014470] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 09:48:02 [Info] [791988558] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 09:48:02 [Info] [3932083705] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 09:48:02 [Info] [791988558] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 09:48:02 [Info] [791988558] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 09:48:02 [Info] [791988558] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 09:48:02 [Info] [3932083705] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 09:48:02 [Info] [3932083705] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 09:48:02 [Info] [3932083705] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 09:48:02 [Info] [3795739640] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 09:48:02 [Info] [3795739640] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 09:48:02 [Info] [3795739640] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 09:48:02 [Info] [3795739640] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 09:48:02 [Info] [1703518778] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 09:48:02 [Info] [1703518778] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 09:48:02 [Info] [1703518778] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 09:48:02 [Info] [1703518778] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 09:48:03 [Info] [1138019885] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 09:48:03 [Info] [1138019885] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 09:48:03 [Info] [1138019885] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 09:48:03 [Info] [1138019885] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 09:48:05 [Info] [765988018] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/27 09:48:05 [Info] [765988018] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/27 09:48:05 [Info] [765988018] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/27 09:48:05 [Info] [765988018] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/27 09:48:54 [Info] [2174871928] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 09:48:54 [Info] [2174871928] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 09:48:54 [Info] [2174871928] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 09:48:54 [Info] [2174871928] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 09:48:55 [Info] [1035873387] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 09:48:55 [Info] [1035873387] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 09:48:55 [Info] [1035873387] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 09:48:55 [Info] [1035873387] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 09:48:58 [Info] [899215678] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 09:48:58 [Info] [899215678] v2ray.com/core/app/dispatcher: sniffed domain: r2---sn-a5msen7z.googlevideo.com 2020/03/27 09:48:58 [Info] [899215678] v2ray.com/core/app/dispatcher: default route for tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 09:48:58 [Info] [57361834] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 09:48:58 [Info] [899215678] v2ray.com/core/common/mux: dispatching request to tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 09:48:58 [Info] [3975432063] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: failed to read request > read tcp 127.0.0.1:1080->127.0.0.1:2312: wsarecv: An existing connection was forcibly closed by the remote host. 2020/03/27 09:48:58 [Info] [57361834] v2ray.com/core/app/dispatcher: sniffed domain: r2---sn-a5msen7z.googlevideo.com 2020/03/27 09:48:58 [Info] [57361834] v2ray.com/core/app/dispatcher: default route for tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 09:48:58 [Info] [57361834] v2ray.com/core/common/mux: dispatching request to tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 09:48:59 [Info] [2768611051] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 09:48:59 [Info] [2768611051] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 09:48:59 [Info] [2768611051] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 09:48:59 [Info] [2768611051] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 09:48:59 [Info] [1385460292] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 09:48:59 [Info] [1385460292] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 09:48:59 [Info] [1385460292] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 09:48:59 [Info] [1385460292] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 09:49:01 [Info] [3416388162] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 09:49:01 [Info] [3416388162] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 09:49:01 [Info] [3416388162] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 09:49:01 [Info] [3416388162] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 09:49:05 [Info] [4211710746] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 09:49:05 [Info] [4211710746] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 09:49:05 [Info] [4211710746] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 09:49:05 [Info] [4211710746] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 09:49:44 [Info] [2558939310] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/27 09:49:44 [Info] [2558939310] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/27 09:49:44 [Info] [2558939310] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/27 09:49:44 [Info] [2558939310] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/27 09:49:44 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 09:49:44 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 09:52:40 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/27 09:52:41 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/27 09:54:12 [Info] [330296538] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 09:54:12 [Info] [330296538] v2ray.com/core/app/dispatcher: sniffed domain: r2---sn-a5msen7z.googlevideo.com 2020/03/27 09:54:12 [Info] [330296538] v2ray.com/core/app/dispatcher: default route for tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 09:54:12 [Info] [330296538] v2ray.com/core/common/mux: dispatching request to tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 09:55:12 [Info] [1370604740] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 09:55:12 [Info] [1370604740] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 09:55:12 [Info] [1370604740] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 09:55:12 [Info] [1370604740] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 09:55:19 [Info] [3735933243] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 09:55:19 [Info] [3735933243] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 09:55:19 [Info] [3735933243] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 09:55:19 [Info] [3735933243] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 09:55:20 [Info] [839338643] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 09:55:20 [Info] [839338643] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 09:55:20 [Info] [839338643] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 09:55:20 [Info] [839338643] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 09:55:31 [Info] [493705732] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 09:55:31 [Info] [493705732] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 09:55:31 [Info] [493705732] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 09:55:31 [Info] [493705732] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 10:00:01 [Info] [2968015778] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/27 10:00:01 [Info] [2968015778] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/27 10:00:01 [Info] [2968015778] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/27 10:00:01 [Info] [2968015778] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/27 10:00:08 [Info] [899215678] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP response > write tcp 127.0.0.1:1080->127.0.0.1:2310: wsasend: An existing connection was forcibly closed by the remote host. 2020/03/27 10:00:08 [Info] [899215678] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 10:00:08 [Info] v2ray.com/core/common/mux: failed to write to downstream. closing session 25 > io: read/write on closed pipe 2020/03/27 10:00:08 [Info] [1486026808] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 10:00:08 [Info] [1486026808] v2ray.com/core/app/dispatcher: sniffed domain: r2---sn-a5msen7z.googlevideo.com 2020/03/27 10:00:08 [Info] [1486026808] v2ray.com/core/app/dispatcher: default route for tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 10:00:08 [Info] [1486026808] v2ray.com/core/common/mux: dispatching request to tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 10:00:09 [Info] [2776175868] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 10:00:09 [Info] [2776175868] v2ray.com/core/app/dispatcher: sniffed domain: r2---sn-a5msen7z.googlevideo.com 2020/03/27 10:00:09 [Info] [2776175868] v2ray.com/core/app/dispatcher: default route for tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 10:00:09 [Info] [2776175868] v2ray.com/core/common/mux: dispatching request to tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 10:00:15 [Info] [1486026808] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP response > write tcp 127.0.0.1:1080->127.0.0.1:2667: wsasend: An established connection was aborted by the software in your host machine. 2020/03/27 10:00:15 [Info] [1486026808] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 10:00:15 [Info] v2ray.com/core/common/mux: failed to write to downstream. closing session 37 > io: read/write on closed pipe 2020/03/27 10:00:15 [Info] [605644009] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 10:00:15 [Info] [605644009] v2ray.com/core/app/dispatcher: sniffed domain: r2---sn-a5msen7z.googlevideo.com 2020/03/27 10:00:15 [Info] [605644009] v2ray.com/core/app/dispatcher: default route for tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 10:00:15 [Info] [605644009] v2ray.com/core/common/mux: dispatching request to tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 10:00:53 [Info] [3338719604] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 10:00:53 [Info] [3338719604] v2ray.com/core/app/dispatcher: sniffed domain: r2---sn-a5msen7z.googlevideo.com 2020/03/27 10:00:53 [Info] [3338719604] v2ray.com/core/app/dispatcher: default route for tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 10:00:53 [Info] [3338719604] v2ray.com/core/common/mux: dispatching request to tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 10:01:34 [Info] [1195900520] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 10:01:34 [Info] [1195900520] v2ray.com/core/app/dispatcher: sniffed domain: r2---sn-a5msen7z.googlevideo.com 2020/03/27 10:01:34 [Info] [1195900520] v2ray.com/core/app/dispatcher: default route for tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 10:01:34 [Info] [1195900520] v2ray.com/core/common/mux: dispatching request to tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 10:01:39 [Info] v2ray.com/core/common/mux: failed to write to downstream. closing session 41 > io: read/write on closed pipe 2020/03/27 10:01:39 [Info] [3299753281] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 10:01:39 [Info] [3299753281] v2ray.com/core/app/dispatcher: sniffed domain: r2---sn-a5msen7z.googlevideo.com 2020/03/27 10:01:39 [Info] [3299753281] v2ray.com/core/app/dispatcher: default route for tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 10:01:39 [Info] [3299753281] v2ray.com/core/common/mux: dispatching request to tcp:r2---sn-a5msen7z.googlevideo.com:443 2020/03/27 10:07:41 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > websocket: close 1006 (abnormal closure): unexpected EOF 2020/03/27 10:07:41 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/27 10:07:42 [Info] [4239603019] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 10:07:42 [Info] [4239603019] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 10:18:06 [Info] [3032243187] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 10:18:06 [Info] [3032243187] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 10:18:06 [Info] [3032243187] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 10:18:06 [Info] [3032243187] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 10:18:06 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 10:18:06 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 10:21:02 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/27 10:21:03 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/27 10:24:08 [Info] [2580086626] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 10:24:08 [Info] [2580086626] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 10:24:08 [Info] [2580086626] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 10:24:08 [Info] [2580086626] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 10:24:08 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 10:24:09 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 10:24:10 [Info] [3835661568] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 10:24:10 [Info] [3835661568] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5meknsy.googlevideo.com 2020/03/27 10:24:10 [Info] [3835661568] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 10:24:10 [Info] [3835661568] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 10:24:11 [Info] [3287712007] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/27 10:24:11 [Info] [3287712007] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/27 10:24:11 [Info] [3287712007] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/27 10:24:11 [Info] [3287712007] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/27 10:24:11 [Info] [3018941181] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 10:24:11 [Info] [3018941181] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 10:24:11 [Info] [3018941181] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 10:24:11 [Info] [3018941181] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 10:24:11 [Info] [4043900044] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 10:24:11 [Info] [4043900044] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 10:24:11 [Info] [4043900044] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 10:24:11 [Info] [4043900044] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 10:24:12 [Info] [1001665050] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 10:24:12 [Info] [1001665050] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 10:24:12 [Info] [1001665050] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 10:24:12 [Info] [1001665050] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 10:24:12 [Info] [3765886119] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 10:24:12 [Info] [3765886119] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 10:24:12 [Info] [3765886119] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 10:24:12 [Info] [3765886119] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 10:24:15 [Info] [909261485] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/27 10:24:15 [Info] [909261485] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/27 10:24:15 [Info] [909261485] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/27 10:24:15 [Info] [909261485] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/27 10:24:15 [Info] [631332814] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:24:15 [Info] [631332814] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5msen7s.googlevideo.com 2020/03/27 10:24:15 [Info] [631332814] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:24:15 [Info] [631332814] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:24:15 [Info] [863340806] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:24:15 [Info] [863340806] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5msen7s.googlevideo.com 2020/03/27 10:24:15 [Info] [863340806] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:24:15 [Info] [863340806] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:24:15 [Info] [958097023] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i1.ytimg.com:443 2020/03/27 10:24:15 [Info] [958097023] v2ray.com/core/app/dispatcher: sniffed domain: i1.ytimg.com 2020/03/27 10:24:15 [Info] [958097023] v2ray.com/core/app/dispatcher: default route for tcp:i1.ytimg.com:443 2020/03/27 10:24:15 [Info] [958097023] v2ray.com/core/common/mux: dispatching request to tcp:i1.ytimg.com:443 2020/03/27 10:24:16 [Info] [2774654645] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 10:24:16 [Info] [580630049] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 10:24:16 [Info] [2774654645] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 10:24:16 [Info] [2774654645] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 10:24:16 [Info] [2774654645] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 10:24:16 [Info] [580630049] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 10:24:16 [Info] [580630049] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 10:24:16 [Info] [580630049] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 10:24:18 [Info] [3102264599] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 10:24:18 [Info] [3102264599] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 10:24:18 [Info] [3102264599] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 10:24:18 [Info] [3102264599] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 10:24:35 [Info] [2708294779] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5mlrn7y.googlevideo.com:443 2020/03/27 10:24:35 [Info] [2708294779] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5mlrn7y.googlevideo.com 2020/03/27 10:24:35 [Info] [2708294779] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5mlrn7y.googlevideo.com:443 2020/03/27 10:24:35 [Info] [2708294779] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5mlrn7y.googlevideo.com:443 2020/03/27 10:24:39 [Info] [894114656] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/27 10:24:39 [Info] [894114656] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/27 10:24:39 [Info] [894114656] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/27 10:24:39 [Info] [894114656] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/27 10:27:16 [Info] [2983584829] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 10:27:16 [Info] [2983584829] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 10:27:16 [Info] [2983584829] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 10:27:16 [Info] [2983584829] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 10:28:01 [Info] [2842470506] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/27 10:28:01 [Info] [2842470506] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/27 10:28:01 [Info] [2842470506] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/27 10:28:01 [Info] [2842470506] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/27 10:33:58 [Info] [431058898] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:33:58 [Info] [431058898] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5msen7s.googlevideo.com 2020/03/27 10:33:58 [Info] [431058898] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:33:58 [Info] [431058898] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:35:59 [Info] [3072691667] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:35:59 [Info] [3072691667] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5msen7s.googlevideo.com 2020/03/27 10:35:59 [Info] [3072691667] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:35:59 [Info] [3072691667] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:43:58 [Info] [1617301490] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:43:58 [Info] [1617301490] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5msen7s.googlevideo.com 2020/03/27 10:43:58 [Info] [1617301490] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:43:58 [Info] [1617301490] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:51:04 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/27 10:51:05 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/27 10:53:48 [Info] [2512314471] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 10:53:48 [Info] [2512314471] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 10:53:48 [Info] [2512314471] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 10:53:48 [Info] [2512314471] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 10:53:48 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 10:53:49 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 10:55:08 [Info] [3701929665] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:55:08 [Info] [3701929665] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5msen7s.googlevideo.com 2020/03/27 10:55:08 [Info] [3701929665] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:55:08 [Info] [3701929665] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:55:42 [Info] [627164113] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-o097znl6.googlevideo.com:443 2020/03/27 10:55:42 [Info] [627164113] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-o097znl6.googlevideo.com 2020/03/27 10:55:42 [Info] [627164113] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-o097znl6.googlevideo.com:443 2020/03/27 10:55:42 [Info] [627164113] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-o097znl6.googlevideo.com:443 2020/03/27 10:55:45 [Info] [3332387894] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-o097znl6.googlevideo.com:443 2020/03/27 10:55:45 [Info] [3332387894] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-o097znl6.googlevideo.com 2020/03/27 10:55:45 [Info] [3332387894] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-o097znl6.googlevideo.com:443 2020/03/27 10:55:45 [Info] [3332387894] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-o097znl6.googlevideo.com:443 2020/03/27 10:55:45 [Info] [2643107415] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-o097znl6.googlevideo.com:443 2020/03/27 10:55:45 [Info] [2643107415] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-o097znl6.googlevideo.com 2020/03/27 10:55:45 [Info] [2643107415] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-o097znl6.googlevideo.com:443 2020/03/27 10:55:45 [Info] [2643107415] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-o097znl6.googlevideo.com:443 2020/03/27 10:55:49 [Info] [2429068491] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-o097znl6.googlevideo.com:443 2020/03/27 10:55:49 [Info] [2429068491] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-o097znl6.googlevideo.com 2020/03/27 10:55:49 [Info] [2429068491] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-o097znl6.googlevideo.com:443 2020/03/27 10:55:49 [Info] [2429068491] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-o097znl6.googlevideo.com:443 2020/03/27 10:55:51 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > read tcp 192.168.235.123:4275->132.145.114.243:443: wsarecv: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2020/03/27 10:55:51 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/27 10:55:52 [Info] [2643107415] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 10:55:52 [Info] [3332387894] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 10:55:52 [Info] [2643107415] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 10:55:52 [Info] [3332387894] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 10:55:52 [Info] [2429068491] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 10:55:52 [Info] [2512314471] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 10:55:52 [Info] [2429068491] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 10:55:52 [Info] [2512314471] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 10:55:52 [Info] [1626066938] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:55:52 [Info] [1626066938] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5msen7s.googlevideo.com 2020/03/27 10:55:52 [Info] [1626066938] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:55:52 [Info] [1626066938] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:55:52 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 10:55:52 [Info] [42824376] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:55:52 [Info] [42824376] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5msen7s.googlevideo.com 2020/03/27 10:55:52 [Info] [42824376] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:55:52 [Info] [42824376] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:55:52 [Info] [1015764762] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:55:52 [Info] [1015764762] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5msen7s.googlevideo.com 2020/03/27 10:55:52 [Info] [1015764762] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:55:52 [Info] [1015764762] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:55:53 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 10:56:02 [Info] [2399957348] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 10:56:02 [Info] [2399957348] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 10:56:02 [Info] [2399957348] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 10:56:02 [Info] [2399957348] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 10:56:21 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > read tcp 192.168.235.123:4341->132.145.114.243:443: wsarecv: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2020/03/27 10:56:21 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/27 10:56:22 [Info] [2399957348] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 10:56:22 [Info] [1015764762] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 10:56:22 [Info] [1015764762] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 10:56:22 [Info] [2399957348] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 10:56:22 [Info] [1626066938] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 10:56:22 [Info] [42824376] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 10:56:22 [Info] [1626066938] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 10:56:22 [Info] [42824376] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 10:56:22 [Info] [827270787] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 10:56:22 [Info] [827270787] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 10:56:22 [Info] [827270787] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 10:56:22 [Info] [827270787] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 10:56:22 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 10:56:22 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 10:56:28 [Info] [680411190] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:56:28 [Info] [680411190] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5msen7s.googlevideo.com 2020/03/27 10:56:28 [Info] [680411190] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 10:56:28 [Info] [680411190] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 11:03:58 [Info] [654278537] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/27 11:03:58 [Info] [654278537] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/27 11:03:58 [Info] [654278537] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/27 11:03:58 [Info] [654278537] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/27 11:03:59 [Info] [1677604108] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: insufficient header > EOF 2020/03/27 11:05:06 [Info] [3938788102] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 11:05:06 [Info] [3938788102] v2ray.com/core/app/dispatcher: sniffed domain: r1---sn-a5msen7s.googlevideo.com 2020/03/27 11:05:06 [Info] [3938788102] v2ray.com/core/app/dispatcher: default route for tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 11:05:06 [Info] [3938788102] v2ray.com/core/common/mux: dispatching request to tcp:r1---sn-a5msen7s.googlevideo.com:443 2020/03/27 11:09:12 [Info] [1623956035] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 11:09:12 [Info] [1623956035] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 11:09:12 [Info] [1623956035] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 11:09:12 [Info] [1623956035] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 11:09:14 [Info] [2351892786] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:09:14 [Info] [2351892786] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknee.googlevideo.com 2020/03/27 11:09:14 [Info] [2351892786] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:09:14 [Info] [2351892786] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:09:14 [Info] [3815783359] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:09:14 [Info] [3815783359] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknee.googlevideo.com 2020/03/27 11:09:14 [Info] [3815783359] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:09:14 [Info] [3815783359] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:09:26 [Info] [2317927785] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/27 11:09:26 [Info] [2317927785] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/27 11:09:26 [Info] [2317927785] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/27 11:09:26 [Info] [2317927785] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/27 11:14:33 [Info] [180871366] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:14:33 [Info] [180871366] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknee.googlevideo.com 2020/03/27 11:14:33 [Info] [180871366] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:14:33 [Info] [180871366] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:15:07 [Info] [1872183535] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:15:07 [Info] [1872183535] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-n4v7knlz.googlevideo.com 2020/03/27 11:15:07 [Info] [1872183535] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:15:07 [Info] [1872183535] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:15:12 [Info] [1694659569] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:15:12 [Info] [1694659569] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-n4v7knlz.googlevideo.com 2020/03/27 11:15:12 [Info] [1694659569] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:15:12 [Info] [1694659569] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:15:19 [Info] [3319169940] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:15:19 [Info] [2575072998] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:15:19 [Info] [3319169940] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknee.googlevideo.com 2020/03/27 11:15:19 [Info] [3319169940] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:15:19 [Info] [3319169940] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:15:19 [Info] [2575072998] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknee.googlevideo.com 2020/03/27 11:15:19 [Info] [2575072998] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:15:19 [Info] [2575072998] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:15:19 [Info] [3244444065] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:15:19 [Info] [3244444065] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknee.googlevideo.com 2020/03/27 11:15:19 [Info] [3244444065] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:15:19 [Info] [3244444065] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:15:26 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > read tcp 192.168.235.123:4364->132.145.114.243:443: wsarecv: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2020/03/27 11:15:26 [Info] v2ray.com/core/common/mux: failed to process data > io: read/write on closed pipe 2020/03/27 11:15:27 [Info] [3244444065] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 11:15:27 [Info] [2575072998] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 11:15:27 [Info] [827270787] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 11:15:27 [Info] [827270787] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 11:15:27 [Info] [3319169940] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 11:15:27 [Info] [2575072998] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 11:15:27 [Info] [3244444065] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 11:15:27 [Info] [3319169940] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 11:15:27 [Info] [11538075] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:15:27 [Info] [1237619242] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:15:27 [Info] [11538075] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-n4v7knlz.googlevideo.com 2020/03/27 11:15:27 [Info] [11538075] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:15:27 [Info] [11538075] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:15:27 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 11:15:27 [Info] [241698628] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:15:27 [Info] [1237619242] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-n4v7knlz.googlevideo.com 2020/03/27 11:15:27 [Info] [1237619242] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:15:27 [Info] [1237619242] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:15:27 [Info] [241698628] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-n4v7knlz.googlevideo.com 2020/03/27 11:15:27 [Info] [241698628] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:15:27 [Info] [241698628] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:15:28 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 11:15:51 [Info] [835972834] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:15:51 [Info] [835972834] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-n4v7knlz.googlevideo.com 2020/03/27 11:15:51 [Info] [835972834] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:15:51 [Info] [835972834] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:16:03 [Info] [1836888028] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 11:16:03 [Info] [1836888028] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 11:16:03 [Info] [1836888028] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 11:16:03 [Info] [1836888028] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 11:16:08 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > read tcp 192.168.235.123:4919->132.145.114.243:443: wsarecv: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2020/03/27 11:16:08 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/27 11:16:09 [Info] [1965150903] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:16:09 [Info] [1965150903] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-n4v7knlz.googlevideo.com 2020/03/27 11:16:09 [Info] [1965150903] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:16:09 [Info] [1965150903] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-n4v7knlz.googlevideo.com:443 2020/03/27 11:16:09 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 11:16:09 [Info] [1836888028] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 11:16:09 [Info] [1836888028] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 11:16:10 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 11:16:13 [Info] [3899193742] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:16:13 [Info] [3899193742] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknee.googlevideo.com 2020/03/27 11:16:13 [Info] [3899193742] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:16:13 [Info] [3899193742] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:16:23 [Info] [1903389807] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:16:23 [Info] [1903389807] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknee.googlevideo.com 2020/03/27 11:16:23 [Info] [1903389807] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:16:23 [Info] [1903389807] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknee.googlevideo.com:443 2020/03/27 11:16:43 [Info] [2348944741] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 11:16:43 [Info] [2348944741] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 11:16:43 [Info] [2348944741] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 11:16:43 [Info] [2348944741] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 11:24:11 [Info] [2094701171] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/27 11:24:11 [Info] [2094701171] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/27 11:24:11 [Info] [2094701171] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/27 11:24:11 [Info] [2094701171] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/27 11:24:11 [Info] [2459232807] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 11:24:11 [Info] [2459232807] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5meknsy.googlevideo.com 2020/03/27 11:24:11 [Info] [2459232807] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 11:24:11 [Info] [2459232807] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 11:24:13 [Info] [4200565845] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 11:24:13 [Info] [4200565845] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5meknsy.googlevideo.com 2020/03/27 11:24:13 [Info] [4200565845] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 11:24:13 [Info] [4200565845] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 11:24:29 [Info] [4288460829] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 11:24:29 [Info] [4288460829] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5meknsy.googlevideo.com 2020/03/27 11:24:29 [Info] [4288460829] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 11:24:29 [Info] [4288460829] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5meknsy.googlevideo.com:443 2020/03/27 11:35:11 [Debug] v2ray.com/core/app/log: Logger started 2020/03/27 11:35:11 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 127.0.0.1:1183 2020/03/27 11:35:11 [Info] v2ray.com/core/transport/internet/tcp: listening TCP on 127.0.0.1:1183 2020/03/27 11:35:11 [Warning] v2ray.com/core: V2Ray 4.23.1 started 2020/03/27 11:35:11 [Info] [3263731842] v2ray.com/core/proxy/http: request to Method [CONNECT] Host [www.google.com:443] with URL [//www.google.com:443] 2020/03/27 11:35:11 [Info] [3263731842] v2ray.com/core/app/dispatcher: taking detour [proxy1183] for [tcp:www.google.com:443] 2020/03/27 11:35:11 [Info] [3263731842] v2ray.com/core/common/mux: dispatching request to tcp:www.google.com:443 2020/03/27 11:35:11 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 11:35:12 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 11:35:18 [Debug] v2ray.com/core/app/log: Logger started 2020/03/27 11:35:18 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 127.0.0.1:1183 2020/03/27 11:35:18 [Info] v2ray.com/core/transport/internet/tcp: listening TCP on 127.0.0.1:1183 2020/03/27 11:35:18 [Warning] v2ray.com/core: V2Ray 4.23.1 started 2020/03/27 11:35:19 [Info] [3985700516] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest-sgp1.digitalocean.com] with URL [http://speedtest-sgp1.digitalocean.com/10mb.test] 2020/03/27 11:35:19 [Info] [3985700516] v2ray.com/core/app/dispatcher: taking detour [proxy1183] for [tcp:speedtest-sgp1.digitalocean.com:80] 2020/03/27 11:35:19 [Info] [3985700516] v2ray.com/core/common/mux: dispatching request to tcp:speedtest-sgp1.digitalocean.com:80 2020/03/27 11:35:19 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 11:35:19 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 11:35:40 [Debug] v2ray.com/core/app/log: Logger started 2020/03/27 11:35:40 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 127.0.0.1:1183 2020/03/27 11:35:40 [Info] v2ray.com/core/transport/internet/tcp: listening TCP on 127.0.0.1:1183 2020/03/27 11:35:40 [Warning] v2ray.com/core: V2Ray 4.23.1 started 2020/03/27 11:35:41 [Info] [2328136948] v2ray.com/core/proxy/http: request to Method [CONNECT] Host [www.google.com:443] with URL [//www.google.com:443] 2020/03/27 11:35:41 [Info] [2328136948] v2ray.com/core/app/dispatcher: taking detour [proxy1183] for [tcp:www.google.com:443] 2020/03/27 11:35:41 [Info] [2328136948] v2ray.com/core/common/mux: dispatching request to tcp:www.google.com:443 2020/03/27 11:35:41 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 11:35:41 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 11:36:57 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/27 11:36:58 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/27 11:42:36 [Info] [644372736] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/27 11:42:36 [Info] [644372736] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/27 11:42:36 [Info] [644372736] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/27 11:42:36 [Info] [644372736] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/27 11:42:36 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 11:42:36 [Info] [128634461] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 11:42:36 [Info] [128634461] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 11:42:36 [Info] [128634461] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 11:42:36 [Info] [128634461] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 11:42:37 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 11:42:39 [Info] [3474209518] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 11:42:39 [Info] [3474209518] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 11:42:39 [Info] [3474209518] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 11:42:39 [Info] [3474209518] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 11:42:39 [Info] [2894314436] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [2894314436] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 11:42:39 [Info] [2894314436] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [2894314436] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [1123477415] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 11:42:39 [Info] [1123477415] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 11:42:39 [Info] [1123477415] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 11:42:39 [Info] [1123477415] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 11:42:39 [Info] [1579437649] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [1579437649] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 11:42:39 [Info] [1579437649] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [1579437649] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [1139561849] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [1139561849] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 11:42:39 [Info] [1139561849] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [1139561849] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [1804876271] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [1804876271] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 11:42:39 [Info] [1804876271] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [1804876271] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [2026680707] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 11:42:39 [Info] [2026680707] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 11:42:39 [Info] [2026680707] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 11:42:39 [Info] [2026680707] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 11:42:39 [Info] [3182044230] v2ray.com/core/proxy/socks: TCP Connect request to tcp:lh3.googleusercontent.com:443 2020/03/27 11:42:39 [Info] [2322023860] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [3182044230] v2ray.com/core/app/dispatcher: sniffed domain: lh3.googleusercontent.com 2020/03/27 11:42:39 [Info] [3182044230] v2ray.com/core/app/dispatcher: default route for tcp:lh3.googleusercontent.com:443 2020/03/27 11:42:39 [Info] [3182044230] v2ray.com/core/common/mux: dispatching request to tcp:lh3.googleusercontent.com:443 2020/03/27 11:42:39 [Info] [2322023860] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 11:42:39 [Info] [2322023860] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [2322023860] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [443751959] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 11:42:39 [Info] [443751959] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 11:42:39 [Info] [443751959] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 11:42:39 [Info] [443751959] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 11:42:39 [Info] [1678560615] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [1409990939] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 11:42:39 [Info] [1678560615] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 11:42:39 [Info] [1678560615] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [1678560615] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [1409990939] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 11:42:39 [Info] [1409990939] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 11:42:39 [Info] [1409990939] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 11:42:39 [Info] [3249969556] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 11:42:39 [Info] [651577324] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 11:42:39 [Info] [3744206017] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [3249969556] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 11:42:39 [Info] [3249969556] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 11:42:39 [Info] [3249969556] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 11:42:39 [Info] [3744206017] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 11:42:39 [Info] [3744206017] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [3744206017] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [651577324] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 11:42:39 [Info] [651577324] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 11:42:39 [Info] [651577324] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 11:42:39 [Info] [1259711740] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [1259711740] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 11:42:39 [Info] [1259711740] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [1259711740] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [907940145] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [907940145] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 11:42:39 [Info] [907940145] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [907940145] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 11:42:39 [Info] [1722227800] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 11:42:39 [Info] [1722227800] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 11:42:39 [Info] [1722227800] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 11:42:39 [Info] [1722227800] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 11:42:40 [Info] [1684196134] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 11:42:40 [Info] [1684196134] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 11:42:40 [Info] [1684196134] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 11:42:40 [Info] [1684196134] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 11:42:42 [Info] [915673272] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/27 11:42:42 [Info] [915673272] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/27 11:42:42 [Info] [915673272] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/27 11:42:42 [Info] [915673272] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/27 11:42:42 [Info] [216174350] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 11:42:42 [Info] [216174350] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 11:42:42 [Info] [216174350] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 11:42:42 [Info] [216174350] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 11:42:42 [Info] [330567753] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 11:42:42 [Info] [330567753] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 11:42:42 [Info] [330567753] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 11:42:42 [Info] [330567753] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 11:42:46 [Info] [526321235] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 11:42:46 [Info] [526321235] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 11:42:46 [Info] [526321235] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 11:42:46 [Info] [3008736210] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 11:42:46 [Info] [526321235] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 11:42:46 [Info] [3008736210] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 11:42:46 [Info] [3008736210] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 11:42:46 [Info] [3008736210] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 11:42:46 [Info] [953231182] v2ray.com/core/proxy/socks: TCP Connect request to tcp:lh3.googleusercontent.com:443 2020/03/27 11:42:46 [Info] [953231182] v2ray.com/core/app/dispatcher: sniffed domain: lh3.googleusercontent.com 2020/03/27 11:42:46 [Info] [953231182] v2ray.com/core/app/dispatcher: default route for tcp:lh3.googleusercontent.com:443 2020/03/27 11:42:46 [Info] [953231182] v2ray.com/core/common/mux: dispatching request to tcp:lh3.googleusercontent.com:443 2020/03/27 11:46:20 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/27 11:46:21 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/27 12:02:52 [Info] [974018592] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/27 12:02:52 [Info] [974018592] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/27 12:02:52 [Info] [974018592] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/27 12:02:52 [Info] [974018592] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/27 12:02:52 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 12:02:53 [Info] [1963174663] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 12:02:53 [Info] [1963174663] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 12:02:53 [Info] [1963174663] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 12:02:53 [Info] [1963174663] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 12:02:53 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 12:02:53 [Info] [2576257611] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 12:02:53 [Info] [2576257611] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 12:02:53 [Info] [2576257611] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 12:02:53 [Info] [2576257611] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 12:02:57 [Info] [276959276] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 12:02:57 [Info] [276959276] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 12:02:57 [Info] [276959276] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 12:02:57 [Info] [276959276] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 12:03:00 [Info] [1197966709] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 12:03:00 [Info] [1197966709] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 12:03:00 [Info] [1197966709] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 12:03:00 [Info] [1197966709] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 12:03:00 [Info] [148452037] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 12:03:00 [Info] [148452037] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 12:03:00 [Info] [148452037] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 12:03:00 [Info] [148452037] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 12:03:08 [Info] [143648403] v2ray.com/core/proxy/socks: TCP Connect request to tcp:lh3.googleusercontent.com:443 2020/03/27 12:03:08 [Info] [143648403] v2ray.com/core/app/dispatcher: sniffed domain: lh3.googleusercontent.com 2020/03/27 12:03:08 [Info] [143648403] v2ray.com/core/app/dispatcher: default route for tcp:lh3.googleusercontent.com:443 2020/03/27 12:03:08 [Info] [143648403] v2ray.com/core/common/mux: dispatching request to tcp:lh3.googleusercontent.com:443 2020/03/27 12:05:19 [Info] [2469399115] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5mlrn7y.googlevideo.com:443 2020/03/27 12:05:19 [Info] [2469399115] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5mlrn7y.googlevideo.com 2020/03/27 12:05:19 [Info] [2469399115] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5mlrn7y.googlevideo.com:443 2020/03/27 12:05:19 [Info] [2469399115] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5mlrn7y.googlevideo.com:443 2020/03/27 12:05:19 [Info] [3380259709] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5mlrn7y.googlevideo.com:443 2020/03/27 12:05:19 [Info] [3380259709] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5mlrn7y.googlevideo.com 2020/03/27 12:05:19 [Info] [3380259709] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5mlrn7y.googlevideo.com:443 2020/03/27 12:05:19 [Info] [3380259709] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5mlrn7y.googlevideo.com:443 2020/03/27 12:05:21 [Info] [2712664165] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 12:05:21 [Info] [381118160] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 12:05:21 [Info] [2712664165] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 12:05:21 [Info] [2712664165] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 12:05:21 [Info] [2712664165] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 12:05:21 [Info] [381118160] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 12:05:21 [Info] [381118160] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 12:05:21 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 12:05:21 [Info] [381118160] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 12:05:22 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 12:05:22 [Info] [1398190628] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i1.ytimg.com:443 2020/03/27 12:05:22 [Info] [1398190628] v2ray.com/core/app/dispatcher: sniffed domain: i1.ytimg.com 2020/03/27 12:05:22 [Info] [1398190628] v2ray.com/core/app/dispatcher: default route for tcp:i1.ytimg.com:443 2020/03/27 12:05:22 [Info] [1398190628] v2ray.com/core/common/mux: dispatching request to tcp:i1.ytimg.com:443 2020/03/27 12:07:16 [Info] [1701412144] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 12:07:16 [Info] [1701412144] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 12:07:16 [Info] [1701412144] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 12:07:16 [Info] [1701412144] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 12:07:39 [Info] [917321034] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/27 12:07:39 [Info] [917321034] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/27 12:07:39 [Info] [917321034] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/27 12:07:39 [Info] [917321034] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/27 12:10:41 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/27 12:10:42 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/27 12:10:52 [Info] [3798395835] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5mlrn7y.googlevideo.com:443 2020/03/27 12:10:52 [Info] [3798395835] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5mlrn7y.googlevideo.com 2020/03/27 12:10:52 [Info] [3798395835] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5mlrn7y.googlevideo.com:443 2020/03/27 12:10:52 [Info] [3798395835] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5mlrn7y.googlevideo.com:443 2020/03/27 12:11:43 [Info] [2276911833] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 12:11:43 [Info] [2276911833] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 12:11:43 [Info] [2276911833] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 12:11:43 [Info] [2276911833] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 12:11:43 [Info] [2718959619] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 12:11:43 [Info] [2718959619] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 12:11:43 [Info] [2718959619] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 12:11:43 [Info] [2718959619] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 12:14:52 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/27 12:14:53 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/27 12:27:35 [Info] [3705409867] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 12:27:35 [Info] [3705409867] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 12:27:35 [Info] [3705409867] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 12:27:35 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 12:27:35 [Info] [3705409867] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 12:27:35 [Info] [864260092] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 12:27:35 [Info] [864260092] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 12:27:35 [Info] [864260092] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 12:27:35 [Info] [864260092] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 12:27:35 [Info] [1489274801] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 12:27:35 [Info] [1489274801] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 12:27:35 [Info] [1489274801] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 12:27:35 [Info] [1489274801] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 12:27:36 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 12:27:36 [Info] [861096408] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 12:27:36 [Info] [861096408] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 12:27:36 [Info] [861096408] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 12:27:36 [Info] [861096408] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 12:27:42 [Info] [2792727712] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 12:27:42 [Info] [2792727712] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 12:27:42 [Info] [2792727712] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 12:27:42 [Info] [2792727712] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 12:27:54 [Info] [2029967409] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 12:27:54 [Info] [2029967409] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 12:27:54 [Info] [2029967409] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 12:27:54 [Info] [2029967409] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 12:27:58 [Info] [1100081768] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:27:58 [Info] [1100081768] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5mekner.googlevideo.com 2020/03/27 12:27:58 [Info] [1100081768] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:27:58 [Info] [1100081768] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:27:58 [Info] [2432760197] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:27:58 [Info] [2432760197] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5mekner.googlevideo.com 2020/03/27 12:27:58 [Info] [2432760197] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:27:58 [Info] [2432760197] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:27:58 [Info] [2625681675] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/27 12:27:58 [Info] [2625681675] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/27 12:27:58 [Info] [2625681675] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/27 12:27:58 [Info] [2625681675] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/27 12:28:00 [Info] [2592118905] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 12:28:00 [Info] [2592118905] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 12:28:00 [Info] [2592118905] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 12:28:00 [Info] [2592118905] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 12:28:00 [Info] [486314797] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 12:28:00 [Info] [486314797] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 12:28:00 [Info] [486314797] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 12:28:00 [Info] [486314797] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 12:28:00 [Info] [1313153152] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 12:28:00 [Info] [1313153152] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 12:28:00 [Info] [1313153152] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 12:28:00 [Info] [1313153152] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 12:32:16 [Info] [3739730296] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 12:32:16 [Info] [3739730296] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 12:32:16 [Info] [3739730296] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 12:32:16 [Info] [3739730296] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 12:34:05 [Info] [3371082401] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:34:05 [Info] [3371082401] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5mekner.googlevideo.com 2020/03/27 12:34:05 [Info] [3371082401] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:34:05 [Info] [3371082401] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:36:27 [Info] [3061656826] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:36:27 [Info] [3061656826] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5mekner.googlevideo.com 2020/03/27 12:36:27 [Info] [3061656826] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:36:27 [Info] [3061656826] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:41:53 [Info] [4219909760] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 12:41:53 [Info] [4219909760] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 12:41:53 [Info] [4219909760] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 12:41:53 [Info] [4219909760] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 12:46:23 [Info] [1780207257] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/27 12:46:23 [Info] [1780207257] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-a5mlrn76.googlevideo.com 2020/03/27 12:46:23 [Info] [1780207257] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/27 12:46:23 [Info] [1780207257] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/27 12:50:20 [Info] [2766048419] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 12:50:20 [Info] [2766048419] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 12:50:20 [Info] [2766048419] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 12:50:20 [Info] [2766048419] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 12:50:46 [Info] [2751180460] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/27 12:50:46 [Info] [2751180460] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/27 12:50:46 [Info] [2751180460] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/27 12:50:46 [Info] [2751180460] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/27 12:51:11 [Info] [585209268] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/27 12:51:11 [Info] [585209268] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-a5mlrn76.googlevideo.com 2020/03/27 12:51:11 [Info] [585209268] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/27 12:51:11 [Info] [585209268] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/27 12:51:17 [Info] [28840265] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/27 12:51:17 [Info] [28840265] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-a5mlrn76.googlevideo.com 2020/03/27 12:51:17 [Info] [28840265] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/27 12:51:17 [Info] [28840265] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/27 12:51:24 [Info] [2304471549] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:51:24 [Info] [2304471549] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5mekner.googlevideo.com 2020/03/27 12:51:24 [Info] [2304471549] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:51:24 [Info] [2304471549] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:51:24 [Info] [3955640304] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:51:24 [Info] [3955640304] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5mekner.googlevideo.com 2020/03/27 12:51:24 [Info] [3955640304] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:51:24 [Info] [3955640304] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:51:24 [Info] [1833141091] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:51:24 [Info] [1833141091] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5mekner.googlevideo.com 2020/03/27 12:51:24 [Info] [1833141091] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:51:24 [Info] [1833141091] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:51:29 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > read tcp 192.168.235.123:7276->132.145.114.243:443: wsarecv: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2020/03/27 12:51:29 [Info] v2ray.com/core/common/mux: failed to process data > io: read/write on closed pipe 2020/03/27 12:51:30 [Info] [1833141091] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 12:51:30 [Info] [2304471549] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 12:51:30 [Info] [2029967409] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 12:51:30 [Info] [3955640304] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 12:51:30 [Info] [2751180460] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 12:51:30 [Info] [1833141091] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 12:51:30 [Info] [3955640304] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 12:51:30 [Info] [2029967409] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 12:51:30 [Info] [2304471549] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 12:51:30 [Info] [2751180460] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 12:51:30 [Info] [2766048419] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 12:51:30 [Info] [2766048419] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 12:51:30 [Info] [1656997806] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/27 12:51:30 [Info] [3676409223] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/27 12:51:30 [Info] [1656997806] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-a5mlrn76.googlevideo.com 2020/03/27 12:51:30 [Info] [1656997806] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/27 12:51:30 [Info] [1656997806] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/27 12:51:30 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 12:51:30 [Info] [3676409223] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-a5mlrn76.googlevideo.com 2020/03/27 12:51:30 [Info] [3676409223] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/27 12:51:30 [Info] [3676409223] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/27 12:51:30 [Info] [2261456400] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/27 12:51:30 [Info] [2261456400] v2ray.com/core/app/dispatcher: sniffed domain: r4---sn-a5mlrn76.googlevideo.com 2020/03/27 12:51:30 [Info] [2261456400] v2ray.com/core/app/dispatcher: default route for tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/27 12:51:30 [Info] [2261456400] v2ray.com/core/common/mux: dispatching request to tcp:r4---sn-a5mlrn76.googlevideo.com:443 2020/03/27 12:51:30 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 12:51:39 [Info] [3556207866] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 12:51:39 [Info] [3556207866] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 12:51:39 [Info] [3556207866] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 12:51:39 [Info] [3556207866] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 12:52:17 [Info] [2021780058] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:52:17 [Info] [2021780058] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5mekner.googlevideo.com 2020/03/27 12:52:17 [Info] [2021780058] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:52:17 [Info] [2021780058] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:52:57 [Info] [1894694931] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:52:57 [Info] [1894694931] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5mekner.googlevideo.com 2020/03/27 12:52:57 [Info] [1894694931] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:52:57 [Info] [1894694931] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:55:31 [Info] [3909516154] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:55:31 [Info] [3909516154] v2ray.com/core/app/dispatcher: sniffed domain: r3---sn-a5mekner.googlevideo.com 2020/03/27 12:55:31 [Info] [3909516154] v2ray.com/core/app/dispatcher: default route for tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:55:31 [Info] [3909516154] v2ray.com/core/common/mux: dispatching request to tcp:r3---sn-a5mekner.googlevideo.com:443 2020/03/27 12:59:06 [Info] [697560344] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 12:59:06 [Info] [697560344] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 12:59:06 [Info] [697560344] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 12:59:06 [Info] [697560344] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 12:59:09 [Info] [2036102606] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 12:59:09 [Info] [2036102606] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5mekn7r.googlevideo.com 2020/03/27 12:59:09 [Info] [2036102606] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 12:59:09 [Info] [2036102606] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 12:59:09 [Info] [1537922171] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 12:59:09 [Info] [1537922171] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5mekn7r.googlevideo.com 2020/03/27 12:59:09 [Info] [1537922171] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 12:59:09 [Info] [1537922171] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 12:59:10 [Info] [3387686187] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/27 12:59:10 [Info] [3387686187] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/27 12:59:10 [Info] [3387686187] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/27 12:59:10 [Info] [3387686187] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/27 12:59:11 [Info] [2400371507] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 12:59:11 [Info] [2400371507] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 12:59:11 [Info] [2400371507] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 12:59:11 [Info] [2400371507] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 12:59:11 [Info] [3847363621] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 12:59:11 [Info] [3847363621] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 12:59:11 [Info] [3847363621] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 12:59:11 [Info] [3847363621] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 12:59:12 [Info] [1147532445] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i1.ytimg.com:443 2020/03/27 12:59:12 [Info] [1147532445] v2ray.com/core/app/dispatcher: sniffed domain: i1.ytimg.com 2020/03/27 12:59:12 [Info] [1147532445] v2ray.com/core/app/dispatcher: default route for tcp:i1.ytimg.com:443 2020/03/27 12:59:12 [Info] [1147532445] v2ray.com/core/common/mux: dispatching request to tcp:i1.ytimg.com:443 2020/03/27 12:59:13 [Info] [3768373998] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 12:59:13 [Info] [3768373998] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 12:59:13 [Info] [3768373998] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 12:59:13 [Info] [3768373998] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 12:59:13 [Info] [2413607849] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-n4v7sn76.googlevideo.com:443 2020/03/27 12:59:13 [Info] [2413607849] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-n4v7sn76.googlevideo.com 2020/03/27 12:59:13 [Info] [2413607849] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-n4v7sn76.googlevideo.com:443 2020/03/27 12:59:13 [Info] [2413607849] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-n4v7sn76.googlevideo.com:443 2020/03/27 12:59:13 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 12:59:14 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 12:59:15 [Info] [998218347] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/27 12:59:15 [Info] [998218347] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/27 12:59:15 [Info] [998218347] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/27 12:59:15 [Info] [998218347] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/27 13:02:09 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/27 13:02:10 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/27 13:03:21 [Info] [1869433256] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 13:03:21 [Info] [1869433256] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5mekn7r.googlevideo.com 2020/03/27 13:03:21 [Info] [1869433256] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 13:03:21 [Info] [1869433256] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 13:04:04 [Info] [81842947] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/27 13:04:04 [Info] [81842947] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/27 13:04:04 [Info] [81842947] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/27 13:04:04 [Info] [81842947] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/27 13:05:33 [Info] [2839723254] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 13:05:33 [Info] [2839723254] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5mekn7r.googlevideo.com 2020/03/27 13:05:33 [Info] [2839723254] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 13:05:33 [Info] [2839723254] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 13:07:13 [Info] [3167868323] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:07:13 [Info] [3167868323] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:07:13 [Info] [3167868323] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:07:13 [Info] [3167868323] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:07:13 [Info] [1567494513] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:07:13 [Info] [1567494513] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:07:13 [Info] [1567494513] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:07:13 [Info] [1567494513] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:07:16 [Info] [296886448] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:07:16 [Info] [296886448] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:07:16 [Info] [296886448] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:07:16 [Info] [296886448] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:09:27 [Info] [2250593621] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 13:09:27 [Info] [2250593621] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5mekn7r.googlevideo.com 2020/03/27 13:09:27 [Info] [2250593621] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 13:09:27 [Info] [2250593621] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 13:10:39 [Info] [967746291] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-n4v7sn76.googlevideo.com:443 2020/03/27 13:10:39 [Info] [967746291] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-n4v7sn76.googlevideo.com 2020/03/27 13:10:39 [Info] [967746291] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-n4v7sn76.googlevideo.com:443 2020/03/27 13:10:39 [Info] [967746291] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-n4v7sn76.googlevideo.com:443 2020/03/27 13:10:44 [Info] [1999359274] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-n4v7sn76.googlevideo.com:443 2020/03/27 13:10:44 [Info] [1999359274] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-n4v7sn76.googlevideo.com 2020/03/27 13:10:44 [Info] [1999359274] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-n4v7sn76.googlevideo.com:443 2020/03/27 13:10:44 [Info] [1999359274] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-n4v7sn76.googlevideo.com:443 2020/03/27 13:10:51 [Info] [4244901892] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 13:10:52 [Info] [4244901892] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5mekn7r.googlevideo.com 2020/03/27 13:10:52 [Info] [4244901892] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 13:10:52 [Info] [4244901892] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 13:10:58 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > read tcp 192.168.235.123:7987->132.145.114.243:443: wsarecv: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2020/03/27 13:10:58 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/27 13:10:58 [Info] [1567494513] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 13:10:58 [Info] [1567494513] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP request > io: read/write on closed pipe 2020/03/27 13:10:59 [Info] [4244901892] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 13:10:59 [Info] [3556207866] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 13:10:59 [Info] [2250593621] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 13:10:59 [Info] [4244901892] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 13:10:59 [Info] [3556207866] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 13:10:59 [Info] [2250593621] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 13:10:59 [Info] [1197779550] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 13:10:59 [Info] [1197779550] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5mekn7r.googlevideo.com 2020/03/27 13:10:59 [Info] [1197779550] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 13:10:59 [Info] [1197779550] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5mekn7r.googlevideo.com:443 2020/03/27 13:10:59 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 13:10:59 [Info] [3452477278] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-n4v7sn76.googlevideo.com:443 2020/03/27 13:10:59 [Info] [3452477278] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-n4v7sn76.googlevideo.com 2020/03/27 13:10:59 [Info] [3452477278] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-n4v7sn76.googlevideo.com:443 2020/03/27 13:10:59 [Info] [3452477278] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-n4v7sn76.googlevideo.com:443 2020/03/27 13:11:00 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 13:11:13 [Info] [3972585828] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:11:13 [Info] [3972585828] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:11:13 [Info] [3972585828] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:11:13 [Info] [3972585828] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:11:13 [Info] [2614532138] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: failed to read request > read tcp 127.0.0.1:1080->127.0.0.1:8725: wsarecv: An established connection was aborted by the software in your host machine. 2020/03/27 13:11:13 [Info] [2450421009] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:11:13 [Info] [2450421009] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:11:13 [Info] [2450421009] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:11:13 [Info] [2450421009] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:11:14 [Info] [3712082260] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:11:14 [Info] [3712082260] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:11:14 [Info] [3712082260] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:11:14 [Info] [3712082260] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:11:14 [Info] [532867183] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:11:14 [Info] [532867183] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:11:14 [Info] [532867183] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:11:14 [Info] [532867183] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:11:14 [Info] [2078555738] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:11:14 [Info] [2078555738] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:11:14 [Info] [2078555738] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:11:14 [Info] [2078555738] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:11:15 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/27 13:11:15 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > io: read/write on closed pipe 2020/03/27 13:11:17 [Info] [1128366446] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:11:17 [Info] [1128366446] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:11:17 [Info] [1128366446] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:11:17 [Info] [1128366446] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:11:17 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 13:11:17 [Info] [2967551297] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:11:17 [Info] [2967551297] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:11:17 [Info] [2967551297] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:11:17 [Info] [2967551297] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:11:17 [Info] [3240040348] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:11:17 [Info] [3240040348] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:11:17 [Info] [3240040348] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:11:17 [Info] [3240040348] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:11:17 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 13:11:22 [Info] [712274236] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:11:22 [Info] [712274236] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:11:22 [Info] [712274236] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:11:22 [Info] [712274236] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:11:28 [Info] [2438458171] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 13:11:28 [Info] [2438458171] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 13:11:28 [Info] [2438458171] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 13:11:28 [Info] [2438458171] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 13:11:37 [Info] [2873837300] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/27 13:11:37 [Info] [2873837300] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/27 13:11:37 [Info] [2873837300] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/27 13:11:37 [Info] [2873837300] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/27 13:11:37 [Info] [557201106] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 13:11:37 [Info] [557201106] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 13:11:37 [Info] [557201106] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 13:11:37 [Info] [557201106] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 13:11:41 [Info] [1548032115] v2ray.com/core/proxy/socks: TCP Connect request to tcp:lh3.googleusercontent.com:443 2020/03/27 13:11:41 [Info] [1548032115] v2ray.com/core/app/dispatcher: sniffed domain: lh3.googleusercontent.com 2020/03/27 13:11:41 [Info] [1548032115] v2ray.com/core/app/dispatcher: default route for tcp:lh3.googleusercontent.com:443 2020/03/27 13:11:41 [Info] [1548032115] v2ray.com/core/common/mux: dispatching request to tcp:lh3.googleusercontent.com:443 2020/03/27 13:11:41 [Info] [2632459701] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 13:11:41 [Info] [2632459701] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 13:11:41 [Info] [2632459701] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 13:11:41 [Info] [2632459701] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 13:11:41 [Info] [1386506893] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 13:11:41 [Info] [1386506893] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 13:11:41 [Info] [1386506893] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 13:11:41 [Info] [1386506893] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 13:12:01 [Info] [2459452203] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-a5mlrn7y.googlevideo.com:443 2020/03/27 13:12:01 [Info] [2459452203] v2ray.com/core/app/dispatcher: sniffed domain: r2---sn-a5mlrn7y.googlevideo.com 2020/03/27 13:12:01 [Info] [2459452203] v2ray.com/core/app/dispatcher: default route for tcp:r2---sn-a5mlrn7y.googlevideo.com:443 2020/03/27 13:12:01 [Info] [2459452203] v2ray.com/core/common/mux: dispatching request to tcp:r2---sn-a5mlrn7y.googlevideo.com:443 2020/03/27 13:12:01 [Info] [2620501992] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r2---sn-a5mlrn7y.googlevideo.com:443 2020/03/27 13:12:01 [Info] [2620501992] v2ray.com/core/app/dispatcher: sniffed domain: r2---sn-a5mlrn7y.googlevideo.com 2020/03/27 13:12:01 [Info] [2620501992] v2ray.com/core/app/dispatcher: default route for tcp:r2---sn-a5mlrn7y.googlevideo.com:443 2020/03/27 13:12:01 [Info] [2620501992] v2ray.com/core/common/mux: dispatching request to tcp:r2---sn-a5mlrn7y.googlevideo.com:443 2020/03/27 13:12:03 [Info] [113783109] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 13:12:03 [Info] [113783109] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 13:12:03 [Info] [113783109] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 13:12:03 [Info] [113783109] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 13:12:06 [Info] [1553904022] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/27 13:12:06 [Info] [1553904022] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/27 13:12:06 [Info] [1553904022] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/27 13:12:06 [Info] [1553904022] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/27 13:17:16 [Info] [3309968031] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:17:16 [Info] [3309968031] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:17:16 [Info] [3309968031] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:17:16 [Info] [3309968031] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:20:06 [Info] [3887611869] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:20:06 [Info] [3887611869] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:20:06 [Info] [3887611869] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:20:06 [Info] [3887611869] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:20:08 [Info] [3813318084] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:20:08 [Info] [3813318084] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:20:08 [Info] [3813318084] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:20:08 [Info] [3813318084] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:20:13 [Info] [269953663] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 13:20:13 [Info] [269953663] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 13:20:13 [Info] [269953663] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 13:20:13 [Info] [269953663] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 13:20:18 [Info] [2596198986] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:20:18 [Info] [2596198986] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:20:18 [Info] [2596198986] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:20:18 [Info] [2596198986] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:20:18 [Info] [514692889] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:20:18 [Info] [514692889] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:20:18 [Info] [514692889] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:20:18 [Info] [514692889] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:20:18 [Info] [475030789] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: failed to read request > read tcp 127.0.0.1:1080->127.0.0.1:9008: wsarecv: An existing connection was forcibly closed by the remote host. 2020/03/27 13:20:20 [Info] [375094463] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 13:20:20 [Info] [375094463] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 13:20:20 [Info] [375094463] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 13:20:20 [Info] [375094463] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 13:20:20 [Info] [2044240865] v2ray.com/core/proxy/socks: TCP Connect request to tcp:s.ytimg.com:443 2020/03/27 13:20:20 [Info] [2044240865] v2ray.com/core/app/dispatcher: sniffed domain: s.ytimg.com 2020/03/27 13:20:20 [Info] [2044240865] v2ray.com/core/app/dispatcher: default route for tcp:s.ytimg.com:443 2020/03/27 13:20:20 [Info] [2044240865] v2ray.com/core/common/mux: dispatching request to tcp:s.ytimg.com:443 2020/03/27 13:20:45 [Info] [2383978295] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/27 13:20:45 [Info] [2383978295] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/27 13:20:45 [Info] [2383978295] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/27 13:20:45 [Info] [2383978295] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/27 13:23:45 [Info] [2671826251] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:23:45 [Info] [2671826251] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:23:45 [Info] [2671826251] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:23:45 [Info] [2671826251] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:24:33 [Info] [3283643401] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:24:33 [Info] [3283643401] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:24:33 [Info] [3283643401] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:24:33 [Info] [3283643401] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:24:38 [Info] [1558153593] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:24:38 [Info] [1558153593] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:24:38 [Info] [1558153593] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:24:38 [Info] [1558153593] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:24:39 [Info] [3349952465] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:24:39 [Info] [3349952465] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:24:39 [Info] [3349952465] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:24:39 [Info] [3349952465] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:24:41 [Info] [1373913612] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:24:41 [Info] [1373913612] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:24:41 [Info] [1373913612] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:24:41 [Info] [1373913612] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:24:43 [Info] v2ray.com/core/common/mux: failed to write to downstream. closing session 20 > io: read/write on closed pipe 2020/03/27 13:24:48 [Info] [3237143465] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:24:48 [Info] [3237143465] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:24:48 [Info] [3237143465] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:24:48 [Info] [3237143465] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:24:48 [Info] [347475142] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:24:48 [Info] [347475142] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:24:48 [Info] [347475142] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:24:48 [Info] [347475142] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:24:50 [Info] [1831925006] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:24:50 [Info] [1831925006] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:24:50 [Info] [1831925006] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:24:50 [Info] [1831925006] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:24:59 [Info] [2911708867] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:24:59 [Info] [2911708867] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:24:59 [Info] [2911708867] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:24:59 [Info] [2911708867] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:24:59 [Info] [1951294389] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:24:59 [Info] [1951294389] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:24:59 [Info] [1951294389] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:24:59 [Info] [1951294389] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:25:01 [Info] [3528527053] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:25:01 [Info] [3528527053] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:25:01 [Info] [3528527053] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:25:01 [Info] [3528527053] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:25:10 [Info] [1121228328] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:25:10 [Info] [1121228328] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:25:10 [Info] [1121228328] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:25:10 [Info] [1121228328] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:25:10 [Info] [4150671360] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:25:10 [Info] [4150671360] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:25:10 [Info] [4150671360] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:25:10 [Info] [4150671360] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:25:12 [Info] [3720086794] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:25:12 [Info] [3720086794] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:25:12 [Info] [3720086794] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:25:12 [Info] [3720086794] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:25:21 [Info] [526453321] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:25:21 [Info] [526453321] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:25:21 [Info] [526453321] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:25:21 [Info] [526453321] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:25:21 [Info] [1581003817] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:25:21 [Info] [1581003817] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:25:21 [Info] [1581003817] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:25:21 [Info] [1581003817] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:25:30 [Info] [1831365534] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:25:30 [Info] [1831365534] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:25:30 [Info] [1831365534] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:25:30 [Info] [1831365534] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:25:31 [Info] [3972796766] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:25:31 [Info] [3972796766] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:25:31 [Info] [3972796766] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:25:31 [Info] [3972796766] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:25:32 [Info] [1239039967] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:25:32 [Info] [1239039967] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:25:32 [Info] [1239039967] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:25:32 [Info] [1239039967] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:25:38 [Info] [2933232958] v2ray.com/core/proxy/socks: TCP Connect request to tcp:play.google.com:443 2020/03/27 13:25:38 [Info] [2933232958] v2ray.com/core/app/dispatcher: sniffed domain: play.google.com 2020/03/27 13:25:38 [Info] [2933232958] v2ray.com/core/app/dispatcher: default route for tcp:play.google.com:443 2020/03/27 13:25:38 [Info] [2933232958] v2ray.com/core/common/mux: dispatching request to tcp:play.google.com:443 2020/03/27 13:26:07 [Info] [207647206] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:07 [Info] [207647206] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:26:07 [Info] [207647206] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:07 [Info] [207647206] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:18 [Info] [2003415457] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:18 [Info] [2003415457] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:26:18 [Info] [2003415457] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:18 [Info] [2003415457] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:27 [Info] [70372183] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:27 [Info] [70372183] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:26:27 [Info] [70372183] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:27 [Info] [70372183] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:37 [Info] [2928907553] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:37 [Info] [2928907553] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:26:37 [Info] [2928907553] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:37 [Info] [2928907553] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:43 [Info] [3097169473] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: insufficient header > read tcp 127.0.0.1:1080->127.0.0.1:9298: i/o timeout 2020/03/27 13:26:48 [Info] [1052519354] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:48 [Info] [1052519354] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:26:48 [Info] [1052519354] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:48 [Info] [1052519354] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:48 [Info] [1617984620] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:48 [Info] [1617984620] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:26:48 [Info] [1617984620] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:48 [Info] [1617984620] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:48 [Info] [4066907494] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:48 [Info] [4066907494] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:26:48 [Info] [4066907494] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:48 [Info] [4066907494] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:59 [Info] [3392889284] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 13:26:59 [Info] [3392889284] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 13:26:59 [Info] [3392889284] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 13:26:59 [Info] [3392889284] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 13:26:59 [Info] [874747890] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:59 [Info] [874747890] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:26:59 [Info] [874747890] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:26:59 [Info] [874747890] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:27:00 [Info] [1977530159] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:27:00 [Info] [1977530159] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:27:00 [Info] [1977530159] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:27:00 [Info] [1977530159] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:27:01 [Info] [2587684794] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:27:01 [Info] [2587684794] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:27:01 [Info] [2587684794] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:27:01 [Info] [2587684794] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:27:09 [Info] [587976544] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:27:09 [Info] [587976544] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:27:09 [Info] [587976544] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:27:09 [Info] [587976544] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:27:11 [Info] [2012215093] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:27:11 [Info] [2012215093] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:27:11 [Info] [2012215093] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:27:11 [Info] [2012215093] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:27:16 [Info] [2377653190] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:27:16 [Info] [2377653190] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:27:16 [Info] [2377653190] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:27:16 [Info] [2377653190] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:27:18 [Info] [2527060362] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:27:18 [Info] [2527060362] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:27:18 [Info] [2527060362] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:27:18 [Info] [2527060362] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:27:20 [Info] [4147544225] v2ray.com/core/proxy/socks: TCP Connect request to tcp:play.google.com:443 2020/03/27 13:27:20 [Info] [4147544225] v2ray.com/core/app/dispatcher: sniffed domain: play.google.com 2020/03/27 13:27:20 [Info] [4147544225] v2ray.com/core/app/dispatcher: default route for tcp:play.google.com:443 2020/03/27 13:27:20 [Info] [4147544225] v2ray.com/core/common/mux: dispatching request to tcp:play.google.com:443 2020/03/27 13:27:20 [Info] [1943124907] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:27:20 [Info] [1943124907] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:27:20 [Info] [1943124907] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:27:20 [Info] [1943124907] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:27:28 [Info] [37915142] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:27:28 [Info] [37915142] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:27:28 [Info] [37915142] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:27:28 [Info] [37915142] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:27:30 [Info] [3945747977] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 13:27:30 [Info] [3945747977] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 13:27:30 [Info] [3945747977] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 13:27:30 [Info] [3945747977] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 13:27:31 [Info] [3342806030] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:27:31 [Info] [3342806030] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:27:31 [Info] [3342806030] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:27:31 [Info] [3342806030] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:27:42 [Info] [3297385935] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:27:42 [Info] [3297385935] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:27:42 [Info] [3297385935] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:27:42 [Info] [3297385935] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:27:46 [Info] [1468618065] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:27:46 [Info] [1468618065] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:27:46 [Info] [1468618065] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:27:46 [Info] [1468618065] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:27:50 [Info] [4147544225] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 13:27:50 [Info] [4147544225] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 13:27:50 [Info] [2377653190] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 13:27:50 [Info] [2377653190] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 13:27:51 [Info] [3945747977] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 13:27:51 [Info] [3945747977] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 13:27:53 [Info] [581744578] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:27:53 [Info] [581744578] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:27:53 [Info] [581744578] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:27:53 [Info] [581744578] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:27:54 [Info] [3574727728] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:27:54 [Info] [3574727728] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:27:54 [Info] [3574727728] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:27:54 [Info] [3574727728] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:27:55 [Info] [2102402764] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:27:55 [Info] [2102402764] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:27:55 [Info] [2102402764] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:27:55 [Info] [2102402764] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:27:55 [Info] [386871668] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:27:55 [Info] [386871668] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:27:55 [Info] [386871668] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:27:55 [Info] [386871668] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:27:55 [Info] [2699650765] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: failed to read request > read tcp 127.0.0.1:1080->127.0.0.1:9371: wsarecv: An existing connection was forcibly closed by the remote host. 2020/03/27 13:27:55 [Info] [1127304821] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:27:55 [Info] [1127304821] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:27:55 [Info] [1127304821] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:27:55 [Info] [1127304821] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:28:03 [Info] [2177734947] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:28:03 [Info] [2177734947] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:28:03 [Info] [2177734947] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:28:03 [Info] [2177734947] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:28:05 [Info] [3991948782] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 13:28:05 [Info] [3991948782] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 13:28:05 [Info] [3991948782] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 13:28:05 [Info] [3991948782] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 13:28:08 [Info] [2624491160] v2ray.com/core/proxy/socks: TCP Connect request to tcp:play.google.com:443 2020/03/27 13:28:08 [Info] [2624491160] v2ray.com/core/app/dispatcher: sniffed domain: play.google.com 2020/03/27 13:28:08 [Info] [2624491160] v2ray.com/core/app/dispatcher: default route for tcp:play.google.com:443 2020/03/27 13:28:08 [Info] [2624491160] v2ray.com/core/common/mux: dispatching request to tcp:play.google.com:443 2020/03/27 13:28:22 [Info] [481317167] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:28:22 [Info] [481317167] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:28:22 [Info] [481317167] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:28:22 [Info] [481317167] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:28:26 [Info] [2684338968] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/27 13:28:26 [Info] [2684338968] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/27 13:28:26 [Info] [2684338968] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/27 13:28:26 [Info] [2684338968] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/27 13:28:30 [Debug] v2ray.com/core/app/log: Logger started 2020/03/27 13:28:30 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 127.0.0.1:1183 2020/03/27 13:28:30 [Info] v2ray.com/core/transport/internet/tcp: listening TCP on 127.0.0.1:1183 2020/03/27 13:28:30 [Warning] v2ray.com/core: V2Ray 4.23.1 started 2020/03/27 13:28:30 [Info] [3574021441] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest-sgp1.digitalocean.com] with URL [http://speedtest-sgp1.digitalocean.com/10mb.test] 2020/03/27 13:28:30 [Info] [3574021441] v2ray.com/core/app/dispatcher: taking detour [proxy1183] for [tcp:speedtest-sgp1.digitalocean.com:80] 2020/03/27 13:28:30 [Info] [3574021441] v2ray.com/core/common/mux: dispatching request to tcp:speedtest-sgp1.digitalocean.com:80 2020/03/27 13:28:30 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 13:28:30 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 13:28:43 [Info] [949762071] v2ray.com/core/proxy/socks: TCP Connect request to tcp:lh3.googleusercontent.com:443 2020/03/27 13:28:43 [Info] [949762071] v2ray.com/core/app/dispatcher: sniffed domain: lh3.googleusercontent.com 2020/03/27 13:28:43 [Info] [949762071] v2ray.com/core/app/dispatcher: default route for tcp:lh3.googleusercontent.com:443 2020/03/27 13:28:43 [Info] [949762071] v2ray.com/core/common/mux: dispatching request to tcp:lh3.googleusercontent.com:443 2020/03/27 13:28:44 [Info] [3224489695] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:28:44 [Info] [3224489695] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:28:44 [Info] [3224489695] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:28:44 [Info] [3224489695] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:28:46 [Info] [3857449425] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: failed to read request > v2ray.com/core/proxy/socks: failed to read request > read tcp 127.0.0.1:1080->127.0.0.1:9411: wsarecv: An existing connection was forcibly closed by the remote host. 2020/03/27 13:28:46 [Info] [1813316047] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/27 13:28:46 [Info] [1813316047] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/27 13:28:46 [Info] [1813316047] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/27 13:28:46 [Info] [1813316047] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/27 13:28:47 [Info] [2956895178] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:28:47 [Info] [2956895178] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:28:47 [Info] [2956895178] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:28:47 [Info] [2956895178] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:28:47 [Info] [1385390934] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:28:47 [Info] [1385390934] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:28:47 [Info] [1385390934] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:28:47 [Info] [1385390934] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:28:47 [Info] [2902795737] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:28:47 [Info] [2902795737] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:28:47 [Info] [2902795737] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:28:47 [Info] [2902795737] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:28:47 [Info] [2548690983] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:28:47 [Info] [2548690983] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:28:47 [Info] [2548690983] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:28:47 [Info] [2548690983] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:28:55 [Info] [1328323112] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:28:55 [Info] [1328323112] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:28:55 [Info] [1328323112] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:28:55 [Info] [1328323112] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:29:00 [Info] [2697811431] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:29:00 [Info] [2697811431] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:29:00 [Info] [2697811431] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:29:00 [Info] [2697811431] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:29:06 [Info] [95952132] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:29:06 [Info] [95952132] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:29:06 [Info] [95952132] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:29:06 [Info] [95952132] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:29:08 [Info] [3537958441] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:29:08 [Info] [3537958441] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:29:08 [Info] [3537958441] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:29:08 [Info] [3537958441] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:29:13 [Info] [3612413534] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:29:13 [Info] [3612413534] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:29:13 [Info] [3612413534] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:29:13 [Info] [3612413534] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:29:18 [Info] [3193398966] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/27 13:29:18 [Info] [3193398966] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/27 13:29:18 [Info] [3193398966] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/27 13:29:18 [Info] [3193398966] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/27 13:29:18 [Info] [3599141332] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:29:18 [Info] [3599141332] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:29:18 [Info] [3599141332] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:29:18 [Info] [3599141332] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:29:20 [Info] [1026877635] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:29:20 [Info] [1026877635] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:29:20 [Info] [1026877635] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:29:20 [Info] [1026877635] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:29:27 [Info] [148709611] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:29:27 [Info] [148709611] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:29:27 [Info] [148709611] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:29:27 [Info] [148709611] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:29:39 [Info] [1241953910] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:29:39 [Info] [1241953910] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:29:39 [Info] [1241953910] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:29:39 [Info] [1241953910] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:29:50 [Debug] v2ray.com/core/app/log: Logger started 2020/03/27 13:29:50 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 127.0.0.1:1183 2020/03/27 13:29:50 [Info] v2ray.com/core/transport/internet/tcp: listening TCP on 127.0.0.1:1183 2020/03/27 13:29:50 [Warning] v2ray.com/core: V2Ray 4.23.1 started 2020/03/27 13:29:50 [Info] [3116653134] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest-sgp1.digitalocean.com] with URL [http://speedtest-sgp1.digitalocean.com/10mb.test] 2020/03/27 13:29:50 [Info] [3116653134] v2ray.com/core/app/dispatcher: taking detour [proxy1183] for [tcp:speedtest-sgp1.digitalocean.com:80] 2020/03/27 13:29:50 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 13:29:50 [Info] [3116653134] v2ray.com/core/common/mux: dispatching request to tcp:speedtest-sgp1.digitalocean.com:80 2020/03/27 13:29:51 [Info] [2642339838] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:29:51 [Info] [2642339838] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:29:51 [Info] [2642339838] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:29:51 [Info] [2642339838] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:29:51 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 13:30:01 [Info] [3682851491] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:30:01 [Info] [3682851491] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:30:01 [Info] [3682851491] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:30:01 [Info] [3682851491] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:30:02 [Debug] v2ray.com/core/app/log: Logger started 2020/03/27 13:30:02 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 127.0.0.1:1183 2020/03/27 13:30:02 [Info] v2ray.com/core/transport/internet/tcp: listening TCP on 127.0.0.1:1183 2020/03/27 13:30:02 [Warning] v2ray.com/core: V2Ray 4.23.1 started 2020/03/27 13:30:03 [Info] [4030727268] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest-sgp1.digitalocean.com] with URL [http://speedtest-sgp1.digitalocean.com/10mb.test] 2020/03/27 13:30:03 [Info] [4030727268] v2ray.com/core/app/dispatcher: taking detour [proxy1183] for [tcp:speedtest-sgp1.digitalocean.com:80] 2020/03/27 13:30:03 [Info] [4030727268] v2ray.com/core/common/mux: dispatching request to tcp:speedtest-sgp1.digitalocean.com:80 2020/03/27 13:30:03 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 13:30:03 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 13:30:12 [Info] [3878066904] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:30:12 [Info] [3878066904] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:30:12 [Info] [3878066904] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:30:12 [Info] [3878066904] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:30:23 [Info] [699217877] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:30:23 [Info] [699217877] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:30:23 [Info] [699217877] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:30:23 [Info] [699217877] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:30:26 [Info] [2282381482] v2ray.com/core/proxy/socks: TCP Connect request to tcp:play.google.com:443 2020/03/27 13:30:26 [Info] [2282381482] v2ray.com/core/app/dispatcher: sniffed domain: play.google.com 2020/03/27 13:30:26 [Info] [2282381482] v2ray.com/core/app/dispatcher: default route for tcp:play.google.com:443 2020/03/27 13:30:26 [Info] [2282381482] v2ray.com/core/common/mux: dispatching request to tcp:play.google.com:443 2020/03/27 13:30:35 [Info] [2874577817] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:30:35 [Info] [2874577817] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-n4v7sn7s.googlevideo.com 2020/03/27 13:30:35 [Info] [2874577817] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:30:35 [Info] [2874577817] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-n4v7sn7s.googlevideo.com:443 2020/03/27 13:30:50 [Info] [2282381482] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 13:30:50 [Info] [2282381482] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 13:30:51 [Debug] v2ray.com/core/app/log: Logger started 2020/03/27 13:30:51 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 127.0.0.1:1183 2020/03/27 13:30:51 [Info] v2ray.com/core/transport/internet/tcp: listening TCP on 127.0.0.1:1183 2020/03/27 13:30:51 [Warning] v2ray.com/core: V2Ray 4.23.1 started 2020/03/27 13:30:52 [Info] [855367892] v2ray.com/core/proxy/http: request to Method [GET] Host [speedtest-sgp1.digitalocean.com] with URL [http://speedtest-sgp1.digitalocean.com/10mb.test] 2020/03/27 13:30:52 [Info] [855367892] v2ray.com/core/app/dispatcher: taking detour [proxy1183] for [tcp:speedtest-sgp1.digitalocean.com:80] 2020/03/27 13:30:52 [Info] [855367892] v2ray.com/core/common/mux: dispatching request to tcp:speedtest-sgp1.digitalocean.com:80 2020/03/27 13:30:52 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 13:30:52 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 13:30:53 [Info] [2757928325] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:30:53 [Info] [2757928325] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:30:53 [Info] [2757928325] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:30:53 [Info] [2757928325] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:31:14 [Info] [3517912026] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:31:14 [Info] [3517912026] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:31:14 [Info] [3517912026] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:31:14 [Info] [3517912026] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:31:41 [Info] [3377403702] v2ray.com/core/proxy/socks: TCP Connect request to tcp:play.google.com:443 2020/03/27 13:31:41 [Info] [3377403702] v2ray.com/core/app/dispatcher: sniffed domain: play.google.com 2020/03/27 13:31:41 [Info] [3377403702] v2ray.com/core/app/dispatcher: default route for tcp:play.google.com:443 2020/03/27 13:31:41 [Info] [3377403702] v2ray.com/core/common/mux: dispatching request to tcp:play.google.com:443 2020/03/27 13:31:54 [Info] [3377403702] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 13:31:54 [Info] [3377403702] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 13:31:57 [Info] [199066650] v2ray.com/core/proxy/socks: TCP Connect request to tcp:play.google.com:443 2020/03/27 13:31:57 [Info] [199066650] v2ray.com/core/app/dispatcher: sniffed domain: play.google.com 2020/03/27 13:31:57 [Info] [199066650] v2ray.com/core/app/dispatcher: default route for tcp:play.google.com:443 2020/03/27 13:31:57 [Info] [199066650] v2ray.com/core/common/mux: dispatching request to tcp:play.google.com:443 2020/03/27 13:32:06 [Info] [678806346] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:32:06 [Info] [678806346] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:32:06 [Info] [678806346] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:32:06 [Info] [678806346] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:32:07 [Info] [2028516647] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:32:07 [Info] [2028516647] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:32:07 [Info] [2028516647] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:32:07 [Info] [2028516647] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:32:20 [Info] [3151478743] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 13:32:20 [Info] [3151478743] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 13:32:20 [Info] [3151478743] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 13:32:20 [Info] [3151478743] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 13:32:21 [Info] [199066650] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 13:32:21 [Info] [199066650] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 13:32:43 [Info] [2682782879] v2ray.com/core/proxy/socks: TCP Connect request to tcp:play.google.com:443 2020/03/27 13:32:43 [Info] [2682782879] v2ray.com/core/app/dispatcher: sniffed domain: play.google.com 2020/03/27 13:32:43 [Info] [2682782879] v2ray.com/core/app/dispatcher: default route for tcp:play.google.com:443 2020/03/27 13:32:43 [Info] [2682782879] v2ray.com/core/common/mux: dispatching request to tcp:play.google.com:443 2020/03/27 13:32:48 [Info] [3151478743] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > context canceled 2020/03/27 13:32:48 [Info] [3151478743] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 13:32:56 [Info] [2482623775] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.google.com:443 2020/03/27 13:32:56 [Info] [2482623775] v2ray.com/core/app/dispatcher: sniffed domain: www.google.com 2020/03/27 13:32:56 [Info] [2482623775] v2ray.com/core/app/dispatcher: default route for tcp:www.google.com:443 2020/03/27 13:32:56 [Info] [2482623775] v2ray.com/core/common/mux: dispatching request to tcp:www.google.com:443 2020/03/27 13:33:07 [Debug] v2ray.com/core/app/log: Logger started 2020/03/27 13:33:07 [Debug] v2ray.com/core/app/stats: create new counter inbound>>>proxy>>>traffic>>>uplink 2020/03/27 13:33:07 [Debug] v2ray.com/core/app/stats: create new counter inbound>>>proxy>>>traffic>>>downlink 2020/03/27 13:33:07 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 0.0.0.0:1080 2020/03/27 13:33:07 [Debug] v2ray.com/core/app/stats: create new counter inbound>>>api>>>traffic>>>uplink 2020/03/27 13:33:07 [Debug] v2ray.com/core/app/stats: create new counter inbound>>>api>>>traffic>>>downlink 2020/03/27 13:33:07 [Debug] v2ray.com/core/app/proxyman/inbound: creating stream worker on 127.0.0.1:1067 2020/03/27 13:33:07 [Info] v2ray.com/core/transport/internet/tcp: listening TCP on 0.0.0.0:1080 2020/03/27 13:33:07 [Info] v2ray.com/core/transport/internet/udp: listening UDP on 0.0.0.0:1080 2020/03/27 13:33:07 [Info] v2ray.com/core/transport/internet/tcp: listening TCP on 127.0.0.1:1067 2020/03/27 13:33:07 [Warning] v2ray.com/core: V2Ray 4.23.1 started 2020/03/27 13:33:07 [Info] [3838528590] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:33:07 [Info] [3838528590] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:33:07 [Info] [3838528590] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:33:07 [Info] [3838528590] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:33:07 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 13:33:08 [Info] [1764444033] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:33:08 [Info] [1764444033] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:33:08 [Info] [1764444033] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:33:08 [Info] [1764444033] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:33:08 [Debug] [2271296639] v2ray.com/core/proxy/dokodemo: processing connection from: 127.0.0.1:9581 2020/03/27 13:33:08 [Info] [2271296639] v2ray.com/core/app/dispatcher: taking detour [api] for [tcp:127.0.0.1:0] 2020/03/27 13:33:08 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 13:33:15 [Info] [1270141656] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.youtube.com:443 2020/03/27 13:33:15 [Info] [1270141656] v2ray.com/core/app/dispatcher: sniffed domain: www.youtube.com 2020/03/27 13:33:15 [Info] [1270141656] v2ray.com/core/app/dispatcher: default route for tcp:www.youtube.com:443 2020/03/27 13:33:15 [Info] [1270141656] v2ray.com/core/common/mux: dispatching request to tcp:www.youtube.com:443 2020/03/27 13:33:15 [Info] [1363026805] v2ray.com/core/proxy/socks: TCP Connect request to tcp:play.google.com:443 2020/03/27 13:33:15 [Info] [1363026805] v2ray.com/core/app/dispatcher: sniffed domain: play.google.com 2020/03/27 13:33:15 [Info] [1363026805] v2ray.com/core/app/dispatcher: default route for tcp:play.google.com:443 2020/03/27 13:33:15 [Info] [1363026805] v2ray.com/core/common/mux: dispatching request to tcp:play.google.com:443 2020/03/27 13:33:16 [Info] [1558816418] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/27 13:33:16 [Info] [1558816418] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/27 13:33:16 [Info] [1558816418] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/27 13:33:16 [Info] [1558816418] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/27 13:33:16 [Info] [1689096300] v2ray.com/core/proxy/socks: TCP Connect request to tcp:lh3.googleusercontent.com:443 2020/03/27 13:33:16 [Info] [1689096300] v2ray.com/core/app/dispatcher: sniffed domain: lh3.googleusercontent.com 2020/03/27 13:33:16 [Info] [1689096300] v2ray.com/core/app/dispatcher: default route for tcp:lh3.googleusercontent.com:443 2020/03/27 13:33:16 [Info] [1689096300] v2ray.com/core/common/mux: dispatching request to tcp:lh3.googleusercontent.com:443 2020/03/27 13:33:16 [Info] [3466248583] v2ray.com/core/proxy/socks: TCP Connect request to tcp:apis.google.com:443 2020/03/27 13:33:16 [Info] [3466248583] v2ray.com/core/app/dispatcher: sniffed domain: apis.google.com 2020/03/27 13:33:16 [Info] [3466248583] v2ray.com/core/app/dispatcher: default route for tcp:apis.google.com:443 2020/03/27 13:33:16 [Info] [3466248583] v2ray.com/core/common/mux: dispatching request to tcp:apis.google.com:443 2020/03/27 13:33:17 [Info] [4173405497] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.google.com:443 2020/03/27 13:33:17 [Info] [4173405497] v2ray.com/core/app/dispatcher: sniffed domain: www.google.com 2020/03/27 13:33:17 [Info] [4173405497] v2ray.com/core/app/dispatcher: default route for tcp:www.google.com:443 2020/03/27 13:33:17 [Info] [4173405497] v2ray.com/core/common/mux: dispatching request to tcp:www.google.com:443 2020/03/27 13:33:18 [Info] [3874760576] v2ray.com/core/proxy/socks: TCP Connect request to tcp:books.google.com:443 2020/03/27 13:33:18 [Info] [3874760576] v2ray.com/core/app/dispatcher: sniffed domain: books.google.com 2020/03/27 13:33:18 [Info] [3874760576] v2ray.com/core/app/dispatcher: default route for tcp:books.google.com:443 2020/03/27 13:33:18 [Info] [106472741] v2ray.com/core/proxy/socks: TCP Connect request to tcp:books.google.com:443 2020/03/27 13:33:18 [Info] [3874760576] v2ray.com/core/common/mux: dispatching request to tcp:books.google.com:443 2020/03/27 13:33:18 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 13:33:18 [Info] [1524533394] v2ray.com/core/proxy/socks: TCP Connect request to tcp:books.google.com:443 2020/03/27 13:33:18 [Info] [106472741] v2ray.com/core/app/dispatcher: sniffed domain: books.google.com 2020/03/27 13:33:18 [Info] [106472741] v2ray.com/core/app/dispatcher: default route for tcp:books.google.com:443 2020/03/27 13:33:18 [Info] [106472741] v2ray.com/core/common/mux: dispatching request to tcp:books.google.com:443 2020/03/27 13:33:18 [Info] [1069821915] v2ray.com/core/proxy/socks: TCP Connect request to tcp:books.google.com:443 2020/03/27 13:33:18 [Info] [1524533394] v2ray.com/core/app/dispatcher: sniffed domain: books.google.com 2020/03/27 13:33:18 [Info] [1524533394] v2ray.com/core/app/dispatcher: default route for tcp:books.google.com:443 2020/03/27 13:33:18 [Info] [1524533394] v2ray.com/core/common/mux: dispatching request to tcp:books.google.com:443 2020/03/27 13:33:18 [Info] [1069821915] v2ray.com/core/app/dispatcher: sniffed domain: books.google.com 2020/03/27 13:33:18 [Info] [1069821915] v2ray.com/core/app/dispatcher: default route for tcp:books.google.com:443 2020/03/27 13:33:18 [Info] [1822197841] v2ray.com/core/proxy/socks: TCP Connect request to tcp:books.google.com:443 2020/03/27 13:33:18 [Info] [3354293369] v2ray.com/core/proxy/socks: TCP Connect request to tcp:books.google.com:443 2020/03/27 13:33:18 [Info] [1069821915] v2ray.com/core/common/mux: dispatching request to tcp:books.google.com:443 2020/03/27 13:33:18 [Info] [1822197841] v2ray.com/core/app/dispatcher: sniffed domain: books.google.com 2020/03/27 13:33:18 [Info] [1822197841] v2ray.com/core/app/dispatcher: default route for tcp:books.google.com:443 2020/03/27 13:33:18 [Info] [1822197841] v2ray.com/core/common/mux: dispatching request to tcp:books.google.com:443 2020/03/27 13:33:18 [Info] [3354293369] v2ray.com/core/app/dispatcher: sniffed domain: books.google.com 2020/03/27 13:33:18 [Info] [3354293369] v2ray.com/core/app/dispatcher: default route for tcp:books.google.com:443 2020/03/27 13:33:18 [Info] [3354293369] v2ray.com/core/common/mux: dispatching request to tcp:books.google.com:443 2020/03/27 13:33:19 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 13:33:20 [Info] [1069821915] v2ray.com/core/app/proxyman/inbound: connection ends > v2ray.com/core/proxy/socks: connection ends > v2ray.com/core/proxy/socks: failed to transport all TCP request > read tcp 127.0.0.1:1080->127.0.0.1:9597: wsarecv: An established connection was aborted by the software in your host machine. 2020/03/27 13:33:20 [Info] [1069821915] v2ray.com/core/common/mux: failed to fetch all input > io: read/write on closed pipe 2020/03/27 13:33:23 [Info] [3647268465] v2ray.com/core/proxy/socks: TCP Connect request to tcp:ogs.google.com:443 2020/03/27 13:33:23 [Info] [3647268465] v2ray.com/core/app/dispatcher: sniffed domain: ogs.google.com 2020/03/27 13:33:23 [Info] [3647268465] v2ray.com/core/app/dispatcher: default route for tcp:ogs.google.com:443 2020/03/27 13:33:23 [Info] [3647268465] v2ray.com/core/common/mux: dispatching request to tcp:ogs.google.com:443 2020/03/27 13:33:24 [Info] [2738593795] v2ray.com/core/proxy/socks: TCP Connect request to tcp:ogs.google.com:443 2020/03/27 13:33:24 [Info] [2738593795] v2ray.com/core/app/dispatcher: sniffed domain: ogs.google.com 2020/03/27 13:33:24 [Info] [2738593795] v2ray.com/core/app/dispatcher: default route for tcp:ogs.google.com:443 2020/03/27 13:33:24 [Info] [2738593795] v2ray.com/core/common/mux: dispatching request to tcp:ogs.google.com:443 2020/03/27 13:33:24 [Info] [3681410597] v2ray.com/core/proxy/socks: TCP Connect request to tcp:ogs.google.com:443 2020/03/27 13:33:24 [Info] [3681410597] v2ray.com/core/app/dispatcher: sniffed domain: ogs.google.com 2020/03/27 13:33:24 [Info] [3681410597] v2ray.com/core/app/dispatcher: default route for tcp:ogs.google.com:443 2020/03/27 13:33:24 [Info] [3681410597] v2ray.com/core/common/mux: dispatching request to tcp:ogs.google.com:443 2020/03/27 13:36:30 [Info] v2ray.com/core/common/mux: failed to read metadata > io: read/write on closed pipe 2020/03/27 13:36:31 [Info] failed to handler mux client connection > v2ray.com/core/proxy/vmess/outbound: connection ends > context canceled 2020/03/27 13:37:08 [Info] [994505461] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:37:08 [Info] [994505461] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:37:08 [Info] [994505461] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:37:08 [Info] [994505461] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:44:18 [Info] [1202049457] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:44:18 [Info] [1202049457] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:44:18 [Info] [1202049457] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:44:18 [Info] [1202049457] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:45:06 [Info] [1379840403] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/27 13:45:06 [Info] [1379840403] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/27 13:45:06 [Info] [1379840403] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/27 13:45:06 [Info] [1379840403] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/27 13:46:28 [Info] [4236182130] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:46:28 [Info] [4236182130] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:46:28 [Info] [4236182130] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:46:28 [Info] [4236182130] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:50:58 [Info] [4173254368] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:50:58 [Info] [4173254368] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:50:58 [Info] [4173254368] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:50:58 [Info] [4173254368] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:50:58 [Info] [281029776] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:50:58 [Info] [281029776] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:50:58 [Info] [281029776] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:50:58 [Info] [281029776] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:50:58 [Info] [2629361351] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:50:58 [Info] [2629361351] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:50:58 [Info] [2629361351] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:50:58 [Info] [2629361351] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:50:58 [Info] [795277214] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:50:58 [Info] [795277214] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:50:58 [Info] [795277214] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:50:58 [Info] [795277214] v2ray.com/core/common/mux: failed to write first payload > EOF 2020/03/27 13:50:58 [Info] [1215124167] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:50:58 [Info] [1215124167] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:50:58 [Info] [1215124167] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:50:58 [Info] [1215124167] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:53:44 [Info] [205791720] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:53:44 [Info] [205791720] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:53:44 [Info] [205791720] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:53:44 [Info] [205791720] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:53:47 [Info] [1023596277] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:53:47 [Info] [1023596277] v2ray.com/core/app/dispatcher: sniffed domain: r6---sn-a5meknl6.googlevideo.com 2020/03/27 13:53:47 [Info] [1023596277] v2ray.com/core/app/dispatcher: default route for tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:53:47 [Info] [1023596277] v2ray.com/core/common/mux: dispatching request to tcp:r6---sn-a5meknl6.googlevideo.com:443 2020/03/27 13:57:12 [Info] [421824196] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:57:12 [Info] [421824196] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:57:12 [Info] [421824196] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:57:12 [Info] [421824196] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:57:13 [Info] [400643182] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i.ytimg.com:443 2020/03/27 13:57:13 [Info] [400643182] v2ray.com/core/app/dispatcher: sniffed domain: i.ytimg.com 2020/03/27 13:57:13 [Info] [400643182] v2ray.com/core/app/dispatcher: default route for tcp:i.ytimg.com:443 2020/03/27 13:57:13 [Info] [400643182] v2ray.com/core/common/mux: dispatching request to tcp:i.ytimg.com:443 2020/03/27 13:57:35 [Info] [3857107628] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/27 13:57:35 [Info] [3857107628] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/27 13:57:35 [Info] [3857107628] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/27 13:57:35 [Info] [3857107628] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/27 13:57:36 [Info] [3168236562] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5mlrnes.googlevideo.com:443 2020/03/27 13:57:36 [Info] [2831877961] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5mlrnes.googlevideo.com:443 2020/03/27 13:57:36 [Info] [3168236562] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5mlrnes.googlevideo.com 2020/03/27 13:57:36 [Info] [3168236562] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5mlrnes.googlevideo.com:443 2020/03/27 13:57:36 [Info] [3168236562] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5mlrnes.googlevideo.com:443 2020/03/27 13:57:36 [Info] [2831877961] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5mlrnes.googlevideo.com 2020/03/27 13:57:36 [Info] [2831877961] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5mlrnes.googlevideo.com:443 2020/03/27 13:57:36 [Info] [2831877961] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5mlrnes.googlevideo.com:443 2020/03/27 13:57:38 [Info] [3534554900] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i1.ytimg.com:443 2020/03/27 13:57:38 [Info] [3534554900] v2ray.com/core/app/dispatcher: sniffed domain: i1.ytimg.com 2020/03/27 13:57:38 [Info] [3534554900] v2ray.com/core/app/dispatcher: default route for tcp:i1.ytimg.com:443 2020/03/27 13:57:38 [Info] [3534554900] v2ray.com/core/common/mux: dispatching request to tcp:i1.ytimg.com:443 2020/03/27 13:57:40 [Info] [3451637125] v2ray.com/core/proxy/socks: TCP Connect request to tcp:yt3.ggpht.com:443 2020/03/27 13:57:40 [Info] [3451637125] v2ray.com/core/app/dispatcher: sniffed domain: yt3.ggpht.com 2020/03/27 13:57:40 [Info] [3451637125] v2ray.com/core/app/dispatcher: default route for tcp:yt3.ggpht.com:443 2020/03/27 13:57:40 [Info] [3451637125] v2ray.com/core/common/mux: dispatching request to tcp:yt3.ggpht.com:443 2020/03/27 13:57:42 [Info] [4734746] v2ray.com/core/proxy/socks: TCP Connect request to tcp:i9.ytimg.com:443 2020/03/27 13:57:42 [Info] [4734746] v2ray.com/core/app/dispatcher: sniffed domain: i9.ytimg.com 2020/03/27 13:57:42 [Info] [4734746] v2ray.com/core/app/dispatcher: default route for tcp:i9.ytimg.com:443 2020/03/27 13:57:42 [Info] [4734746] v2ray.com/core/common/mux: dispatching request to tcp:i9.ytimg.com:443 2020/03/27 13:57:44 [Info] [4043120140] v2ray.com/core/proxy/socks: TCP Connect request to tcp:r5---sn-a5mlrnes.googlevideo.com:443 2020/03/27 13:57:44 [Info] [4043120140] v2ray.com/core/app/dispatcher: sniffed domain: r5---sn-a5mlrnes.googlevideo.com 2020/03/27 13:57:44 [Info] [4043120140] v2ray.com/core/app/dispatcher: default route for tcp:r5---sn-a5mlrnes.googlevideo.com:443 2020/03/27 13:57:44 [Info] [4043120140] v2ray.com/core/common/mux: dispatching request to tcp:r5---sn-a5mlrnes.googlevideo.com:443 2020/03/27 13:58:32 [Info] [1603822935] v2ray.com/core/proxy/socks: TCP Connect request to tcp:www.gstatic.com:443 2020/03/27 13:58:32 [Info] [1603822935] v2ray.com/core/app/dispatcher: sniffed domain: www.gstatic.com 2020/03/27 13:58:32 [Info] [1603822935] v2ray.com/core/app/dispatcher: default route for tcp:www.gstatic.com:443 2020/03/27 13:58:32 [Info] [1603822935] v2ray.com/core/common/mux: dispatching request to tcp:www.gstatic.com:443 2020/03/27 13:58:32 [Info] v2ray.com/core/transport/internet/websocket: creating connection to tcp:xxxxxxxxxxxxxxxxxxx:xxxx 2020/03/27 13:58:32 [Info] v2ray.com/core/proxy/vmess/outbound: tunneling request to tcp:v1.mux.cool:9527 via tcp:xxxxxxxxxxxxxxxxxxx:xxxx

github-actions[bot] commented 4 years ago

This issue is stale because it has been open 120 days with no activity. Remove stale label or comment or this will be closed in 5 days