File tree Expand file tree Collapse file tree 14 files changed +20
-20
lines changed
internal/integration_test Expand file tree Collapse file tree 14 files changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ import (
20
20
"fmt"
21
21
"net"
22
22
23
- "github.com/Jigsaw-Code/outline-internal- sdk/transport"
24
- "github.com/Jigsaw-Code/outline-internal- sdk/transport/shadowsocks"
23
+ "github.com/Jigsaw-Code/outline-sdk/transport"
24
+ "github.com/Jigsaw-Code/outline-sdk/transport/shadowsocks"
25
25
onet "github.com/Jigsaw-Code/outline-ss-server/net"
26
26
)
27
27
Original file line number Diff line number Diff line change 15
15
package client
16
16
17
17
import (
18
- "github.com/Jigsaw-Code/outline-internal- sdk/transport/shadowsocks"
18
+ "github.com/Jigsaw-Code/outline-sdk/transport/shadowsocks"
19
19
)
20
20
21
21
// Deprecated: Prefer github.com/Jigsaw-Code/outline-ss-server/shadowsocks/client.NewPrefixSaltGenerator
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ import (
26
26
"syscall"
27
27
"time"
28
28
29
- "github.com/Jigsaw-Code/outline-internal- sdk/transport"
30
- "github.com/Jigsaw-Code/outline-internal- sdk/transport/shadowsocks"
29
+ "github.com/Jigsaw-Code/outline-sdk/transport"
30
+ "github.com/Jigsaw-Code/outline-sdk/transport/shadowsocks"
31
31
"github.com/Jigsaw-Code/outline-ss-server/ipinfo"
32
32
"github.com/Jigsaw-Code/outline-ss-server/service"
33
33
"github.com/op/go-logging"
Original file line number Diff line number Diff line change 1
1
module github.com/Jigsaw-Code/outline-ss-server
2
2
3
3
require (
4
- github.com/Jigsaw-Code/outline-internal- sdk v0.0.0-20230522235223-1b323ea1d667
4
+ github.com/Jigsaw-Code/outline-sdk v0.0.2
5
5
github.com/goreleaser/goreleaser v1.18.2
6
6
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7
7
7
github.com/oschwald/geoip2-golang v1.8.0
Original file line number Diff line number Diff line change @@ -508,8 +508,8 @@ github.com/DataDog/zstd v1.4.5 h1:EndNeuB0l9syBZhut0wns3gV1hL8zX8LIu6ZiVHWLIQ=
508
508
github.com/GoogleCloudPlatform/cloudsql-proxy v1.33.2 /go.mod h1:uqoR4sJc63p7ugW8a/vsEspOsNuehbi7ptS2CHCyOnY =
509
509
github.com/HdrHistogram/hdrhistogram-go v1.1.0 /go.mod h1:yDgFjdqOqDEKOvasDdhWNXYg9BVp4O+o5f6V/ehm6Oo =
510
510
github.com/HdrHistogram/hdrhistogram-go v1.1.2 /go.mod h1:yDgFjdqOqDEKOvasDdhWNXYg9BVp4O+o5f6V/ehm6Oo =
511
- github.com/Jigsaw-Code/outline-internal- sdk v0.0.0-20230522235223-1b323ea1d667 h1:msZNpaFAjRTvVi5q2yW1PJ4MmU4/7anob2IZYtDZQJw =
512
- github.com/Jigsaw-Code/outline-internal- sdk v0.0.0-20230522235223-1b323ea1d667 /go.mod h1:vxtE3esaFy5UG6TnipLyWx0esUQBy9LBXHLQx+SoER8 =
511
+ github.com/Jigsaw-Code/outline-sdk v0.0.2 h1:uCuyJMaWj57IYEG/Hdml8YMdk9chU60ZkSxJXBhyGHU =
512
+ github.com/Jigsaw-Code/outline-sdk v0.0.2 /go.mod h1:hhlKz0+r9wSDFT8usvN8Zv/BFToCIFAUn1P2Qk8G2CM =
513
513
github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible /go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0 =
514
514
github.com/Masterminds/goutils v1.1.1 h1:5nUrii3FMTL5diU80unEVvNevw1nH4+ZV4DSLVJLSYI =
515
515
github.com/Masterminds/goutils v1.1.1 /go.mod h1:8cTjp+g8YejhMuvIA5y2vz3BpJxksy863GQaJW2MFNU =
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ import (
23
23
"testing"
24
24
"time"
25
25
26
- "github.com/Jigsaw-Code/outline-internal- sdk/transport"
27
- "github.com/Jigsaw-Code/outline-internal- sdk/transport/shadowsocks"
26
+ "github.com/Jigsaw-Code/outline-sdk/transport"
27
+ "github.com/Jigsaw-Code/outline-sdk/transport/shadowsocks"
28
28
"github.com/Jigsaw-Code/outline-ss-server/ipinfo"
29
29
onet "github.com/Jigsaw-Code/outline-ss-server/net"
30
30
"github.com/Jigsaw-Code/outline-ss-server/service"
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ package net
17
17
import (
18
18
"io"
19
19
20
- "github.com/Jigsaw-Code/outline-internal- sdk/transport"
20
+ "github.com/Jigsaw-Code/outline-sdk/transport"
21
21
)
22
22
23
23
type DuplexConn = transport.StreamConn
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import (
19
19
"net"
20
20
"sync"
21
21
22
- "github.com/Jigsaw-Code/outline-internal- sdk/transport/shadowsocks"
22
+ "github.com/Jigsaw-Code/outline-sdk/transport/shadowsocks"
23
23
)
24
24
25
25
// Don't add a tag if it would reduce the salt entropy below this amount.
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import (
18
18
"container/list"
19
19
"fmt"
20
20
21
- "github.com/Jigsaw-Code/outline-internal- sdk/transport/shadowsocks"
21
+ "github.com/Jigsaw-Code/outline-sdk/transport/shadowsocks"
22
22
)
23
23
24
24
// MakeTestCiphers creates a CipherList containing one fresh AEAD cipher
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ package metrics
17
17
import (
18
18
"io"
19
19
20
- "github.com/Jigsaw-Code/outline-internal- sdk/transport"
20
+ "github.com/Jigsaw-Code/outline-sdk/transport"
21
21
)
22
22
23
23
type ProxyMetrics struct {
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ import (
26
26
"syscall"
27
27
"time"
28
28
29
- "github.com/Jigsaw-Code/outline-internal- sdk/transport"
30
- "github.com/Jigsaw-Code/outline-internal- sdk/transport/shadowsocks"
29
+ "github.com/Jigsaw-Code/outline-sdk/transport"
30
+ "github.com/Jigsaw-Code/outline-sdk/transport/shadowsocks"
31
31
"github.com/Jigsaw-Code/outline-ss-server/ipinfo"
32
32
onet "github.com/Jigsaw-Code/outline-ss-server/net"
33
33
"github.com/Jigsaw-Code/outline-ss-server/service/metrics"
Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ import (
25
25
"testing"
26
26
"time"
27
27
28
- "github.com/Jigsaw-Code/outline-internal- sdk/transport"
29
- "github.com/Jigsaw-Code/outline-internal- sdk/transport/shadowsocks"
28
+ "github.com/Jigsaw-Code/outline-sdk/transport"
29
+ "github.com/Jigsaw-Code/outline-sdk/transport/shadowsocks"
30
30
"github.com/Jigsaw-Code/outline-ss-server/ipinfo"
31
31
onet "github.com/Jigsaw-Code/outline-ss-server/net"
32
32
"github.com/Jigsaw-Code/outline-ss-server/service/metrics"
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import (
22
22
"sync"
23
23
"time"
24
24
25
- "github.com/Jigsaw-Code/outline-internal- sdk/transport/shadowsocks"
25
+ "github.com/Jigsaw-Code/outline-sdk/transport/shadowsocks"
26
26
"github.com/Jigsaw-Code/outline-ss-server/ipinfo"
27
27
onet "github.com/Jigsaw-Code/outline-ss-server/net"
28
28
logging "github.com/op/go-logging"
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import (
22
22
"testing"
23
23
"time"
24
24
25
- "github.com/Jigsaw-Code/outline-internal- sdk/transport/shadowsocks"
25
+ "github.com/Jigsaw-Code/outline-sdk/transport/shadowsocks"
26
26
"github.com/Jigsaw-Code/outline-ss-server/ipinfo"
27
27
onet "github.com/Jigsaw-Code/outline-ss-server/net"
28
28
logging "github.com/op/go-logging"
You can’t perform that action at this time.
0 commit comments