This repository was archived by the owner on May 6, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 9 files changed +12
-12
lines changed Expand file tree Collapse file tree 9 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 55require (
66 github.com/Jigsaw-Code/choir v1.0.1
77 github.com/Jigsaw-Code/getsni v1.0.0
8- github.com/Jigsaw-Code/outline-internal- sdk v0.0.0-20230503153405-c99d818ff195
8+ github.com/Jigsaw-Code/outline-sdk v0.0.2
99 github.com/crazy-max/xgo v0.26.0
1010 github.com/eycorsican/go-tun2socks v1.16.11
1111 golang.org/x/mobile v0.0.0-20230301163155-e0f57694e12c
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ github.com/Jigsaw-Code/choir v1.0.1 h1:WeRt6aTn5L+MtRNqRJ+J1RKgoO8CyXXt1dtZghy2K
22github.com/Jigsaw-Code/choir v1.0.1 /go.mod h1:c4Wd1y1PeCajZbKZV+ZmcFGMDoduyqMCEMHW5iqzWXI =
33github.com/Jigsaw-Code/getsni v1.0.0 h1:OUTIu7wTBi/7DMX+RkZrN7XhU3UDevTEsAWK4gsqSwE =
44github.com/Jigsaw-Code/getsni v1.0.0 /go.mod h1:Ps0Ec3fVMKLyAItVbMKoQFq1lDjtFQXZ+G5nRNNh/QE =
5- github.com/Jigsaw-Code/outline-internal- sdk v0.0.0-20230503153405-c99d818ff195 h1:9qSHRhYNHgnxzJPFotkiAhMcJGXJFJ6j1TWZKWgHwzQ =
6- github.com/Jigsaw-Code/outline-internal- sdk v0.0.0-20230503153405-c99d818ff195 /go.mod h1:vxtE3esaFy5UG6TnipLyWx0esUQBy9LBXHLQx+SoER8 =
5+ github.com/Jigsaw-Code/outline-sdk v0.0.2 h1:uCuyJMaWj57IYEG/Hdml8YMdk9chU60ZkSxJXBhyGHU =
6+ github.com/Jigsaw-Code/outline-sdk v0.0.2 /go.mod h1:hhlKz0+r9wSDFT8usvN8Zv/BFToCIFAUn1P2Qk8G2CM =
77github.com/crazy-max/xgo v0.26.0 h1:vK4OfeXJoDGvnjlzdTCgPbeWLKENbzj84DTpU/VRonM =
88github.com/crazy-max/xgo v0.26.0 /go.mod h1:m/aqfKaN/cYzfw+Pzk7Mk0tkmShg3/rCS4Zdhdugi4o =
99github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c =
Original file line number Diff line number Diff line change 1515package outline
1616
1717import (
18- "github.com/Jigsaw-Code/outline-internal- sdk/transport"
18+ "github.com/Jigsaw-Code/outline-sdk/transport"
1919)
2020
2121// Client provides a transparent container for [transport.StreamDialer] and [transport.PacketListener]
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import (
2323
2424 "github.com/Jigsaw-Code/outline-go-tun2socks/outline"
2525 "github.com/Jigsaw-Code/outline-go-tun2socks/outline/neterrors"
26- "github.com/Jigsaw-Code/outline-internal- sdk/transport"
26+ "github.com/Jigsaw-Code/outline-sdk/transport"
2727)
2828
2929// TODO: make these values configurable by exposing a struct with the connectivity methods.
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ import (
2222 "testing"
2323 "time"
2424
25- "github.com/Jigsaw-Code/outline-internal- sdk/transport"
26- "github.com/Jigsaw-Code/outline-internal- sdk/transport/shadowsocks"
25+ "github.com/Jigsaw-Code/outline-sdk/transport"
26+ "github.com/Jigsaw-Code/outline-sdk/transport/shadowsocks"
2727)
2828
2929func TestCheckUDPConnectivityWithDNS_Success (t * testing.T ) {
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ import (
2828 "github.com/Jigsaw-Code/outline-go-tun2socks/outline"
2929 "github.com/Jigsaw-Code/outline-go-tun2socks/outline/connectivity"
3030 "github.com/Jigsaw-Code/outline-go-tun2socks/outline/internal/utf8"
31- "github.com/Jigsaw-Code/outline-internal- sdk/transport"
32- "github.com/Jigsaw-Code/outline-internal- sdk/transport/shadowsocks"
31+ "github.com/Jigsaw-Code/outline-sdk/transport"
32+ "github.com/Jigsaw-Code/outline-sdk/transport/shadowsocks"
3333 "github.com/eycorsican/go-tun2socks/common/log"
3434)
3535
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import (
1919 "io"
2020 "net"
2121
22- "github.com/Jigsaw-Code/outline-internal- sdk/transport"
22+ "github.com/Jigsaw-Code/outline-sdk/transport"
2323 "github.com/eycorsican/go-tun2socks/core"
2424)
2525
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import (
2323 "github.com/eycorsican/go-tun2socks/core"
2424 "github.com/eycorsican/go-tun2socks/proxy/dnsfallback"
2525
26- "github.com/Jigsaw-Code/outline-internal- sdk/transport"
26+ "github.com/Jigsaw-Code/outline-sdk/transport"
2727
2828 "github.com/Jigsaw-Code/outline-go-tun2socks/outline/connectivity"
2929 "github.com/Jigsaw-Code/outline-go-tun2socks/tunnel"
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import (
2121 "sync"
2222 "time"
2323
24- transport "github.com/Jigsaw-Code/outline-internal -sdk/transport"
24+ "github.com/Jigsaw-Code/outline-sdk/transport"
2525 "github.com/eycorsican/go-tun2socks/core"
2626)
2727
You can’t perform that action at this time.
0 commit comments