Skip to content

Commit

Permalink
Fix references in x (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
fortuna authored Aug 7, 2023
1 parent a5c0757 commit 893de7f
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion x/connectivity/connectivity.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"syscall"
"time"

"github.com/Jigsaw-Code/outline-internal-sdk/transport"
"github.com/Jigsaw-Code/outline-sdk/transport"
"github.com/miekg/dns"
)

Expand Down
2 changes: 1 addition & 1 deletion x/connectivity/connectivity_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
"testing"
"time"

"github.com/Jigsaw-Code/outline-internal-sdk/transport"
"github.com/Jigsaw-Code/outline-sdk/transport"
"github.com/miekg/dns"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
Expand Down
4 changes: 2 additions & 2 deletions x/go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module github.com/Jigsaw-Code/outline-internal-sdk/x
module github.com/Jigsaw-Code/outline-sdk/x

go 1.20

require (
github.com/Jigsaw-Code/outline-internal-sdk v0.0.0-20230522161920-4652a0839de2
github.com/Jigsaw-Code/outline-sdk v0.0.2
github.com/miekg/dns v1.1.54
github.com/stretchr/testify v1.8.2
golang.org/x/sys v0.8.0
Expand Down
4 changes: 2 additions & 2 deletions x/go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github.com/Jigsaw-Code/outline-internal-sdk v0.0.0-20230522161920-4652a0839de2 h1:Yo0b9lNvwQqr17RRB4YmeasNt9N4O+qJwZsDIx7pN0M=
github.com/Jigsaw-Code/outline-internal-sdk v0.0.0-20230522161920-4652a0839de2/go.mod h1:vxtE3esaFy5UG6TnipLyWx0esUQBy9LBXHLQx+SoER8=
github.com/Jigsaw-Code/outline-sdk v0.0.2 h1:uCuyJMaWj57IYEG/Hdml8YMdk9chU60ZkSxJXBhyGHU=
github.com/Jigsaw-Code/outline-sdk v0.0.2/go.mod h1:hhlKz0+r9wSDFT8usvN8Zv/BFToCIFAUn1P2Qk8G2CM=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
Expand Down
4 changes: 2 additions & 2 deletions x/outline-connectivity/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Outline Connectivity Test
git # Outline Connectivity Test

This app illustrates the use of the Shadowsocks transport to resolve a domain name over TCP or UDP.

Expand All @@ -7,6 +7,6 @@ Example:
# From https://www.reddit.com/r/outlinevpn/wiki/index/prefixing/
KEY=ss://ENCRYPTION_KEY@HOST:PORT/
for PREFIX in POST%20 HTTP%2F1.1%20 %05%C3%9C_%C3%A0%01%20 %16%03%01%40%00%01 %13%03%03%3F %16%03%03%40%00%02; do
go run github.com/Jigsaw-Code/outline-internal-sdk/x/outline-connectivity@latest -key="$KEY?prefix=$PREFIX" -proto tcp -resolver 8.8.8.8 && echo Prefix "$PREFIX" works!
go run github.com/Jigsaw-Code/outline-sdk/x/outline-connectivity@latest -key="$KEY?prefix=$PREFIX" -proto tcp -resolver 8.8.8.8 && echo Prefix "$PREFIX" works!
done
```
2 changes: 1 addition & 1 deletion x/outline-connectivity/access_key.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"strconv"
"strings"

"github.com/Jigsaw-Code/outline-internal-sdk/transport/shadowsocks"
"github.com/Jigsaw-Code/outline-sdk/transport/shadowsocks"
)

type sessionConfig struct {
Expand Down
6 changes: 3 additions & 3 deletions x/outline-connectivity/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ import (
"strings"
"time"

"github.com/Jigsaw-Code/outline-internal-sdk/transport"
"github.com/Jigsaw-Code/outline-internal-sdk/transport/shadowsocks"
"github.com/Jigsaw-Code/outline-internal-sdk/x/connectivity"
"github.com/Jigsaw-Code/outline-sdk/transport"
"github.com/Jigsaw-Code/outline-sdk/transport/shadowsocks"
"github.com/Jigsaw-Code/outline-sdk/x/connectivity"
)

var debugLog log.Logger = *log.New(io.Discard, "", 0)
Expand Down

0 comments on commit 893de7f

Please sign in to comment.