summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Wiley <brandon@blanu.net>2016-11-16 12:02:02 -0600
committerBrandon Wiley <brandon@blanu.net>2016-11-16 12:02:02 -0600
commitc657a5d4d6c5ce751acfff63bfe9c81b0a503628 (patch)
tree6a265af5dc234f9a3a3d53a824df700688f0d14f
parent1d3f17ceabe3e904dc6ee375b5e8b6d05d3422c9 (diff)
Fixed import paths
-rw-r--r--modes/pt_socks5/pt_socks5.go12
-rw-r--r--modes/stun_udp/stun_udp.go8
-rw-r--r--modes/transparent_tcp/transparent_tcp.go8
-rw-r--r--shapeshifter-dispatcher/shapeshifter-dispatcher.go24
4 files changed, 26 insertions, 26 deletions
diff --git a/modes/pt_socks5/pt_socks5.go b/modes/pt_socks5/pt_socks5.go
index 579124f..e7a4cec 100644
--- a/modes/pt_socks5/pt_socks5.go
+++ b/modes/pt_socks5/pt_socks5.go
@@ -40,12 +40,12 @@ import (
"golang.org/x/net/proxy"
"git.torproject.org/pluggable-transports/goptlib.git"
- "github.com/OperatorFoundation/obfs4/common/log"
- "github.com/OperatorFoundation/obfs4/common/pt_extras"
- "github.com/OperatorFoundation/obfs4/common/socks5"
- "github.com/OperatorFoundation/obfs4/common/termmon"
- "github.com/OperatorFoundation/obfs4/transports"
- "github.com/OperatorFoundation/obfs4/transports/base"
+ "github.com/OperatorFoundation/shapeshifter-dispatcher/common/log"
+ "github.com/OperatorFoundation/shapeshifter-dispatcher/common/pt_extras"
+ "github.com/OperatorFoundation/shapeshifter-dispatcher/common/socks5"
+ "github.com/OperatorFoundation/shapeshifter-dispatcher/common/termmon"
+ "github.com/OperatorFoundation/shapeshifter-dispatcher/transports"
+ "github.com/OperatorFoundation/shapeshifter-transports/transports/base"
)
const (
diff --git a/modes/stun_udp/stun_udp.go b/modes/stun_udp/stun_udp.go
index 7eda988..bf3045d 100644
--- a/modes/stun_udp/stun_udp.go
+++ b/modes/stun_udp/stun_udp.go
@@ -45,10 +45,10 @@ import (
"github.com/willscott/goturn"
"git.torproject.org/pluggable-transports/goptlib.git"
- "github.com/OperatorFoundation/obfs4/common/log"
- "github.com/OperatorFoundation/obfs4/common/termmon"
- "github.com/OperatorFoundation/obfs4/transports"
- "github.com/OperatorFoundation/obfs4/transports/base"
+ "github.com/OperatorFoundation/shapeshifter-dispatcher/common/log"
+ "github.com/OperatorFoundation/shapeshifter-dispatcher/common/termmon"
+ "github.com/OperatorFoundation/shapeshifter-dispatcher/transports"
+ "github.com/OperatorFoundation/shapeshifter-transports/transports/base"
)
const (
diff --git a/modes/transparent_tcp/transparent_tcp.go b/modes/transparent_tcp/transparent_tcp.go
index 0f27e3f..30e04fc 100644
--- a/modes/transparent_tcp/transparent_tcp.go
+++ b/modes/transparent_tcp/transparent_tcp.go
@@ -42,10 +42,10 @@ import (
"golang.org/x/net/proxy"
"git.torproject.org/pluggable-transports/goptlib.git"
- "github.com/OperatorFoundation/obfs4/common/log"
- "github.com/OperatorFoundation/obfs4/common/termmon"
- "github.com/OperatorFoundation/obfs4/transports"
- "github.com/OperatorFoundation/obfs4/transports/base"
+ "github.com/OperatorFoundation/shapeshifter-dispatcher/common/log"
+ "github.com/OperatorFoundation/shapeshifter-dispatcher/common/termmon"
+ "github.com/OperatorFoundation/shapeshifter-dispatcher/transports"
+ "github.com/OperatorFoundation/shapeshifter-transports/transports/base"
)
const (
diff --git a/shapeshifter-dispatcher/shapeshifter-dispatcher.go b/shapeshifter-dispatcher/shapeshifter-dispatcher.go
index d11a39b..8820c30 100644
--- a/shapeshifter-dispatcher/shapeshifter-dispatcher.go
+++ b/shapeshifter-dispatcher/shapeshifter-dispatcher.go
@@ -39,18 +39,18 @@ import (
"syscall"
"git.torproject.org/pluggable-transports/goptlib.git"
- "github.com/OperatorFoundation/obfs4/common/log"
- "github.com/OperatorFoundation/obfs4/common/pt_extras"
- "github.com/OperatorFoundation/obfs4/common/termmon"
- "github.com/OperatorFoundation/obfs4/transports"
-
- "github.com/OperatorFoundation/obfs4/modes/pt_socks5"
- "github.com/OperatorFoundation/obfs4/modes/transparent_tcp"
- "github.com/OperatorFoundation/obfs4/modes/transparent_udp"
- "github.com/OperatorFoundation/obfs4/modes/stun_udp"
-
- _ "github.com/OperatorFoundation/obfs4/proxy_dialers/proxy_socks4"
- _ "github.com/OperatorFoundation/obfs4/proxy_dialers/proxy_http"
+ "github.com/OperatorFoundation/shapeshifter-dispatcher/common/log"
+ "github.com/OperatorFoundation/shapeshifter-dispatcher/common/pt_extras"
+ "github.com/OperatorFoundation/shapeshifter-dispatcher/common/termmon"
+ "github.com/OperatorFoundation/shapeshifter-dispatcher/transports"
+
+ "github.com/OperatorFoundation/shapeshifter-dispatcher/modes/pt_socks5"
+ "github.com/OperatorFoundation/shapeshifter-dispatcher/modes/transparent_tcp"
+ "github.com/OperatorFoundation/shapeshifter-dispatcher/modes/transparent_udp"
+ "github.com/OperatorFoundation/shapeshifter-dispatcher/modes/stun_udp"
+
+ _ "github.com/OperatorFoundation/shapeshifter-dispatcher/proxy_dialers/proxy_socks4"
+ _ "github.com/OperatorFoundation/shapeshifter-dispatcher/proxy_dialers/proxy_http"
)
const (