Skip to content
This repository was archived by the owner on May 6, 2024. It is now read-only.

Commit dada265

Browse files
authored
build: ⬆️ upgrade to outline-sdk v0.0.2 (#124)
1 parent 30e3031 commit dada265

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.18
55
require (
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

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ github.com/Jigsaw-Code/choir v1.0.1 h1:WeRt6aTn5L+MtRNqRJ+J1RKgoO8CyXXt1dtZghy2K
22
github.com/Jigsaw-Code/choir v1.0.1/go.mod h1:c4Wd1y1PeCajZbKZV+ZmcFGMDoduyqMCEMHW5iqzWXI=
33
github.com/Jigsaw-Code/getsni v1.0.0 h1:OUTIu7wTBi/7DMX+RkZrN7XhU3UDevTEsAWK4gsqSwE=
44
github.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=
77
github.com/crazy-max/xgo v0.26.0 h1:vK4OfeXJoDGvnjlzdTCgPbeWLKENbzj84DTpU/VRonM=
88
github.com/crazy-max/xgo v0.26.0/go.mod h1:m/aqfKaN/cYzfw+Pzk7Mk0tkmShg3/rCS4Zdhdugi4o=
99
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=

outline/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
package outline
1616

1717
import (
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]

outline/connectivity/connectivity.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.

outline/connectivity/connectivity_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

2929
func TestCheckUDPConnectivityWithDNS_Success(t *testing.T) {

outline/shadowsocks/client.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

outline/tun2socks/tcp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

outline/tun2socks/tunnel.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

outline/tun2socks/udp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)