Skip to content

Commit

Permalink
Update dialer.go
Browse files Browse the repository at this point in the history
  • Loading branch information
mrst2000 committed Jun 4, 2024
1 parent 20de187 commit 8f487a9
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions transport/internet/websocket/dialer.go
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
package websocket

import (
"bytes"
"context"
_ "embed"
"encoding/base64"
"io"
gonet "net"
"net/http"
"time"

"github.com/gorilla/websocket"
"github.com/xtls/xray-core/common"
"github.com/xtls/xray-core/common/net"
"github.com/xtls/xray-core/common/platform"
"github.com/xtls/xray-core/common/session"
"github.com/xtls/xray-core/common/uuid"
"github.com/xtls/xray-core/transport/internet"
"github.com/xtls/xray-core/transport/internet/stat"
"github.com/xtls/xray-core/transport/internet/tls"
"bytes"
"context"
_ "embed"
"encoding/base64"
"io"
gonet "net"
"net/http"
"time"

"github.com/gorilla/websocket"
"github.com/xtls/xray-core/common"

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 6)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (macos-latest)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, 386)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, arm64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, 386)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (android, arm64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, amd64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, amd64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64le)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 5)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 7)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm, 7)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, loong64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mipsle)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, amd64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, 386)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64le)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, amd64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, 386)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm, 7)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, s390x)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, riscv64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm, 7)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, amd64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (windows-latest)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 5)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, amd64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, amd64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm, 7)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, riscv64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, arm64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 7)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, 386)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, loong64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (android, arm64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, amd64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64le)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 6)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, 386)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mipsle)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm, 7)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm, 7)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, 386)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64le)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, 386)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, s390x)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, amd64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm64)

no required module provides package github.com/xtls/xray-core/common; to add it:

Check failure on line 14 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, amd64)

no required module provides package github.com/xtls/xray-core/common; to add it:
"github.com/xtls/xray-core/common/net"

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 6)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (macos-latest)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, 386)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, arm64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, 386)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (android, arm64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, amd64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, amd64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64le)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 5)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 7)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm, 7)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, loong64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mipsle)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, amd64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, 386)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64le)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, amd64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, 386)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm, 7)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, s390x)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, riscv64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm, 7)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, amd64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (windows-latest)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 5)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, amd64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, amd64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm, 7)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, riscv64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, arm64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 7)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, 386)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, loong64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (android, arm64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, amd64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64le)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 6)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, 386)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mipsle)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm, 7)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm, 7)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, 386)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64le)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, 386)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, s390x)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, amd64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:

Check failure on line 15 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, amd64)

no required module provides package github.com/xtls/xray-core/common/net; to add it:
"github.com/xtls/xray-core/common/platform"

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 6)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (macos-latest)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, 386)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, arm64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, 386)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (android, arm64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, amd64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, amd64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64le)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 5)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 7)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm, 7)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, loong64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mipsle)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, amd64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, 386)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64le)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, amd64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, 386)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm, 7)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, s390x)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, riscv64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm, 7)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, amd64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (windows-latest)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 5)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, amd64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, amd64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm, 7)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, riscv64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, arm64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 7)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, 386)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, loong64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (android, arm64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, amd64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64le)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 6)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, 386)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mipsle)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm, 7)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm, 7)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, 386)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64le)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, 386)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, s390x)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, amd64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:

Check failure on line 16 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, amd64)

no required module provides package github.com/xtls/xray-core/common/platform; to add it:
"github.com/xtls/xray-core/common/session"

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 6)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (macos-latest)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, 386)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, arm64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, 386)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (android, arm64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, amd64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, amd64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64le)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 5)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 7)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm, 7)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, loong64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mipsle)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, amd64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, 386)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64le)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, amd64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, 386)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm, 7)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, s390x)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, riscv64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm, 7)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, amd64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (windows-latest)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 5)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, amd64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, amd64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm, 7)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, riscv64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, arm64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 7)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, 386)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, loong64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (android, arm64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, amd64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64le)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 6)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, 386)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mipsle)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm, 7)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm, 7)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, 386)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64le)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, 386)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, s390x)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, amd64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:

Check failure on line 17 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, amd64)

no required module provides package github.com/xtls/xray-core/common/session; to add it:
"github.com/xtls/xray-core/common/uuid"

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 6)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (macos-latest)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, 386)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, arm64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, 386)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (android, arm64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, amd64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, amd64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64le)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 5)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 7)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm, 7)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, loong64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mipsle)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, amd64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, 386)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64le)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, amd64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, 386)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm, 7)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, s390x)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, riscv64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm, 7)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, amd64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (windows-latest)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 5)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, amd64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, amd64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm, 7)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, riscv64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, arm64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 7)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, 386)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, loong64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (android, arm64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, amd64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64le)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 6)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, 386)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mipsle)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm, 7)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm, 7)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, 386)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64le)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, 386)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, s390x)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, amd64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:

Check failure on line 18 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, amd64)

no required module provides package github.com/xtls/xray-core/common/uuid; to add it:
"github.com/xtls/xray-core/transport/internet"

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 6)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (macos-latest)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, 386)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, 386)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (android, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64le)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 5)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, loong64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mipsle)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, 386)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64le)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, 386)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, s390x)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, riscv64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (windows-latest)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 5)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, riscv64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, 386)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, loong64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (android, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64le)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 6)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, 386)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mipsle)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, 386)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64le)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, 386)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, s390x)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:

Check failure on line 19 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet; to add it:
"github.com/xtls/xray-core/transport/internet/stat"

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 6)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (macos-latest)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, 386)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, 386)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (android, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64le)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 5)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, loong64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mipsle)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, 386)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64le)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, 386)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, s390x)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, riscv64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (windows-latest)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 5)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, riscv64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, 386)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, loong64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (android, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64le)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 6)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, 386)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mipsle)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, 386)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64le)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, 386)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, s390x)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:

Check failure on line 20 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet/stat; to add it:
"github.com/xtls/xray-core/transport/internet/tls"

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 6)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (macos-latest)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, 386)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, 386)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (android, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64le)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 5)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, loong64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mipsle)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, 386)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64le)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, 386)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, s390x)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, riscv64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / test (windows-latest)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 5)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, riscv64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (freebsd, 386)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, loong64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (android, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (darwin, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64le)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mips64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, arm, 6)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, 386)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, mipsle)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm, 7)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, 386)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, ppc64le)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, 386)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (linux, s390x)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (openbsd, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, arm64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:

Check failure on line 21 in transport/internet/websocket/dialer.go

View workflow job for this annotation

GitHub Actions / build (windows, amd64)

no required module provides package github.com/xtls/xray-core/transport/internet/tls; to add it:
)

//go:embed dialer.html
Expand Down

0 comments on commit 8f487a9

Please sign in to comment.