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

Commit

Permalink
Update outline-ss-server to v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alalamav committed Oct 7, 2020
1 parent 29f620b commit 11e6e39
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 95 deletions.
9 changes: 3 additions & 6 deletions go.mod
Expand Up @@ -5,12 +5,9 @@ go 1.15
require (
github.com/Jigsaw-Code/choir v1.0.1
github.com/Jigsaw-Code/getsni v0.0.0-20190807203514-efe2dbf35d1f
github.com/Jigsaw-Code/outline-ss-server v1.2.1
github.com/Jigsaw-Code/outline-ss-server v1.3.0
github.com/eycorsican/go-tun2socks v1.16.11
github.com/songgao/water v0.0.0-20200317203138-2b4b6d7c09d8 // indirect
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect
golang.org/x/mobile v0.0.0-20200801112145-973feb4309de // indirect
golang.org/x/net v0.0.0-20200904194848-62affa334b73
golang.org/x/sys v0.0.0-20200909081042-eff7692f9009
google.golang.org/protobuf v1.25.0 // indirect
golang.org/x/net v0.0.0-20201006153459-a7d1128ccaa0
golang.org/x/sys v0.0.0-20201007165808-a893ed343c85
)
98 changes: 15 additions & 83 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion outline/shadowsocks/connectivity.go
Expand Up @@ -6,7 +6,7 @@ import (
"time"

oss "github.com/Jigsaw-Code/outline-go-tun2socks/shadowsocks"
"github.com/Jigsaw-Code/outline-ss-server/shadowsocks"
shadowsocks "github.com/Jigsaw-Code/outline-ss-server/client"
)

// Outline error codes. Must be kept in sync with definitions in outline-client/cordova-plugin-outline/outlinePlugin.js
Expand Down
2 changes: 1 addition & 1 deletion shadowsocks/connectivity.go
Expand Up @@ -6,7 +6,7 @@ import (
"net/http"
"time"

"github.com/Jigsaw-Code/outline-ss-server/shadowsocks"
shadowsocks "github.com/Jigsaw-Code/outline-ss-server/client"
)

// TODO: make these values configurable by exposing a struct with the connectivity methods.
Expand Down
2 changes: 1 addition & 1 deletion shadowsocks/connectivity_test.go
Expand Up @@ -8,7 +8,7 @@ import (
"time"

onet "github.com/Jigsaw-Code/outline-ss-server/net"
"github.com/Jigsaw-Code/outline-ss-server/shadowsocks"
shadowsocks "github.com/Jigsaw-Code/outline-ss-server/client"
)

func TestCheckUDPConnectivityWithDNS_Success(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion shadowsocks/tcp.go
Expand Up @@ -4,7 +4,7 @@ import (
"net"

onet "github.com/Jigsaw-Code/outline-ss-server/net"
"github.com/Jigsaw-Code/outline-ss-server/shadowsocks"
shadowsocks "github.com/Jigsaw-Code/outline-ss-server/client"
"github.com/eycorsican/go-tun2socks/core"
)

Expand Down
2 changes: 1 addition & 1 deletion shadowsocks/udp.go
Expand Up @@ -6,7 +6,7 @@ import (
"sync"
"time"

"github.com/Jigsaw-Code/outline-ss-server/shadowsocks"
shadowsocks "github.com/Jigsaw-Code/outline-ss-server/client"
"github.com/eycorsican/go-tun2socks/core"
)

Expand Down
2 changes: 1 addition & 1 deletion tunnel/outline.go
Expand Up @@ -24,7 +24,7 @@ import (
"github.com/eycorsican/go-tun2socks/proxy/dnsfallback"

oss "github.com/Jigsaw-Code/outline-go-tun2socks/shadowsocks"
"github.com/Jigsaw-Code/outline-ss-server/shadowsocks"
shadowsocks "github.com/Jigsaw-Code/outline-ss-server/client"
)

// OutlineTunnel represents a tunnel from a TUN device to a server.
Expand Down

0 comments on commit 11e6e39

Please sign in to comment.