Projects STRLCPY tun2socks Commits 9838f57e
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • component/dialer/dialer.go dialer/dialer.go
    Content is identical
  • component/dialer/sockopt.go dialer/sockopt.go
    Content is identical
  • component/dialer/sockopt_darwin.go dialer/sockopt_darwin.go
    Content is identical
  • component/dialer/sockopt_freebsd.go dialer/sockopt_freebsd.go
    Content is identical
  • component/dialer/sockopt_linux.go dialer/sockopt_linux.go
    Content is identical
  • component/dialer/sockopt_openbsd.go dialer/sockopt_openbsd.go
    Content is identical
  • component/dialer/sockopt_others.go dialer/sockopt_others.go
    Content is identical
  • component/dialer/sockopt_windows.go dialer/sockopt_windows.go
    Content is identical
  • ■ ■ ■ ■
    dns/resolver.go
    skipped 2 lines
    3 3  import (
    4 4   "net"
    5 5   
    6  - "github.com/xjasonlyu/tun2socks/v2/component/dialer"
     6 + "github.com/xjasonlyu/tun2socks/v2/dialer"
    7 7  )
    8 8   
    9 9  func init() {
    skipped 6 lines
  • ■ ■ ■ ■
    engine/engine.go
    skipped 11 lines
    12 12   "gvisor.dev/gvisor/pkg/tcpip"
    13 13   "gvisor.dev/gvisor/pkg/tcpip/stack"
    14 14   
    15  - "github.com/xjasonlyu/tun2socks/v2/component/dialer"
    16 15   "github.com/xjasonlyu/tun2socks/v2/core"
    17 16   "github.com/xjasonlyu/tun2socks/v2/core/device"
    18 17   "github.com/xjasonlyu/tun2socks/v2/core/option"
     18 + "github.com/xjasonlyu/tun2socks/v2/dialer"
    19 19   "github.com/xjasonlyu/tun2socks/v2/engine/mirror"
    20 20   "github.com/xjasonlyu/tun2socks/v2/log"
    21 21   "github.com/xjasonlyu/tun2socks/v2/proxy"
    skipped 211 lines
  • ■ ■ ■ ■
    proxy/direct.go
    skipped 3 lines
    4 4   "context"
    5 5   "net"
    6 6   
    7  - "github.com/xjasonlyu/tun2socks/v2/component/dialer"
     7 + "github.com/xjasonlyu/tun2socks/v2/dialer"
    8 8   M "github.com/xjasonlyu/tun2socks/v2/metadata"
    9 9   "github.com/xjasonlyu/tun2socks/v2/proxy/proto"
    10 10  )
    skipped 48 lines
  • ■ ■ ■ ■
    proxy/http.go
    skipped 10 lines
    11 11   "net/http"
    12 12   "net/url"
    13 13   
    14  - "github.com/xjasonlyu/tun2socks/v2/component/dialer"
     14 + "github.com/xjasonlyu/tun2socks/v2/dialer"
    15 15   M "github.com/xjasonlyu/tun2socks/v2/metadata"
    16 16   "github.com/xjasonlyu/tun2socks/v2/proxy/proto"
    17 17  )
    skipped 82 lines
  • ■ ■ ■ ■
    proxy/shadowsocks.go
    skipped 7 lines
    8 8   
    9 9   "github.com/Dreamacro/go-shadowsocks2/core"
    10 10   
    11  - "github.com/xjasonlyu/tun2socks/v2/component/dialer"
    12 11   obfs "github.com/xjasonlyu/tun2socks/v2/component/simple-obfs"
     12 + "github.com/xjasonlyu/tun2socks/v2/dialer"
    13 13   M "github.com/xjasonlyu/tun2socks/v2/metadata"
    14 14   "github.com/xjasonlyu/tun2socks/v2/proxy/proto"
    15 15   "github.com/xjasonlyu/tun2socks/v2/transport/socks5"
    skipped 107 lines
  • ■ ■ ■ ■
    proxy/socks4.go
    skipped 4 lines
    5 5   "fmt"
    6 6   "net"
    7 7   
    8  - "github.com/xjasonlyu/tun2socks/v2/component/dialer"
     8 + "github.com/xjasonlyu/tun2socks/v2/dialer"
    9 9   M "github.com/xjasonlyu/tun2socks/v2/metadata"
    10 10   "github.com/xjasonlyu/tun2socks/v2/proxy/proto"
    11 11   "github.com/xjasonlyu/tun2socks/v2/transport/socks4"
    skipped 33 lines
  • ■ ■ ■ ■
    proxy/socks5.go
    skipped 6 lines
    7 7   "io"
    8 8   "net"
    9 9   
    10  - "github.com/xjasonlyu/tun2socks/v2/component/dialer"
     10 + "github.com/xjasonlyu/tun2socks/v2/dialer"
    11 11   M "github.com/xjasonlyu/tun2socks/v2/metadata"
    12 12   "github.com/xjasonlyu/tun2socks/v2/proxy/proto"
    13 13   "github.com/xjasonlyu/tun2socks/v2/transport/socks5"
    skipped 176 lines
Please wait...
Page is in error, reload to recover