summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Wiley <brandon@blanu.net>2016-12-08 17:19:01 -0600
committerBrandon Wiley <brandon@blanu.net>2016-12-08 17:19:01 -0600
commit7badc1da1f0b9929a374f0340ea5ff05adb70a73 (patch)
tree38531a19a0e40664f5b2eb8650708c72bff63415
parent1c49c7cf275d81121db2f84537a9d79ef31502be (diff)
Updated goptlib import paths to use shapeshifter-ipc
-rw-r--r--common/pt_extras/pt_extras.go2
-rw-r--r--common/socks5/args.go2
-rw-r--r--common/socks5/args_test.go2
-rw-r--r--common/socks5/socks5.go2
-rw-r--r--modes/pt_socks5/pt_socks5.go2
-rw-r--r--modes/stun_udp/stun_udp.go2
-rw-r--r--modes/transparent_tcp/transparent_tcp.go2
-rw-r--r--modes/transparent_udp/transparent_udp.go2
8 files changed, 8 insertions, 8 deletions
diff --git a/common/pt_extras/pt_extras.go b/common/pt_extras/pt_extras.go
index 17314bf..63c1aba 100644
--- a/common/pt_extras/pt_extras.go
+++ b/common/pt_extras/pt_extras.go
@@ -35,7 +35,7 @@ import (
"os"
"strconv"
- "git.torproject.org/pluggable-transports/goptlib.git"
+ "github.com/OperatorFoundation/shapeshifter-ipc"
)
// This file contains things that probably should be in goptlib but are not
diff --git a/common/socks5/args.go b/common/socks5/args.go
index d9ea099..6d161c0 100644
--- a/common/socks5/args.go
+++ b/common/socks5/args.go
@@ -29,7 +29,7 @@ package socks5
import (
"fmt"
- "git.torproject.org/pluggable-transports/goptlib.git"
+ "github.com/OperatorFoundation/shapeshifter-ipc"
)
// parseClientParameters takes a client parameter string formatted according to
diff --git a/common/socks5/args_test.go b/common/socks5/args_test.go
index d9d3f22..ec40afe 100644
--- a/common/socks5/args_test.go
+++ b/common/socks5/args_test.go
@@ -5,7 +5,7 @@ package socks5
import (
"testing"
- "git.torproject.org/pluggable-transports/goptlib.git"
+ "github.com/OperatorFoundation/shapeshifter-ipc"
)
func stringSlicesEqual(a, b []string) bool {
diff --git a/common/socks5/socks5.go b/common/socks5/socks5.go
index d15e542..42b19eb 100644
--- a/common/socks5/socks5.go
+++ b/common/socks5/socks5.go
@@ -46,7 +46,7 @@ import (
"syscall"
"time"
- "git.torproject.org/pluggable-transports/goptlib.git"
+ "github.com/OperatorFoundation/shapeshifter-ipc"
)
const (
diff --git a/modes/pt_socks5/pt_socks5.go b/modes/pt_socks5/pt_socks5.go
index 38b0e2c..736f5e5 100644
--- a/modes/pt_socks5/pt_socks5.go
+++ b/modes/pt_socks5/pt_socks5.go
@@ -39,7 +39,7 @@ import (
"golang.org/x/net/proxy"
- "git.torproject.org/pluggable-transports/goptlib.git"
+ "github.com/OperatorFoundation/shapeshifter-ipc"
"github.com/OperatorFoundation/shapeshifter-dispatcher/common/log"
"github.com/OperatorFoundation/shapeshifter-dispatcher/common/socks5"
"github.com/OperatorFoundation/shapeshifter-dispatcher/common/termmon"
diff --git a/modes/stun_udp/stun_udp.go b/modes/stun_udp/stun_udp.go
index d636881..12a4c39 100644
--- a/modes/stun_udp/stun_udp.go
+++ b/modes/stun_udp/stun_udp.go
@@ -44,7 +44,7 @@ import (
"github.com/willscott/goturn"
- "git.torproject.org/pluggable-transports/goptlib.git"
+ "github.com/OperatorFoundation/shapeshifter-ipc"
"github.com/OperatorFoundation/shapeshifter-dispatcher/common/log"
"github.com/OperatorFoundation/shapeshifter-dispatcher/common/termmon"
"github.com/OperatorFoundation/shapeshifter-dispatcher/transports"
diff --git a/modes/transparent_tcp/transparent_tcp.go b/modes/transparent_tcp/transparent_tcp.go
index ae7b97c..33d8513 100644
--- a/modes/transparent_tcp/transparent_tcp.go
+++ b/modes/transparent_tcp/transparent_tcp.go
@@ -40,7 +40,7 @@ import (
"golang.org/x/net/proxy"
- "git.torproject.org/pluggable-transports/goptlib.git"
+ "github.com/OperatorFoundation/shapeshifter-ipc"
"github.com/OperatorFoundation/shapeshifter-dispatcher/common/log"
"github.com/OperatorFoundation/shapeshifter-dispatcher/common/termmon"
"github.com/OperatorFoundation/shapeshifter-transports/transports/base"
diff --git a/modes/transparent_udp/transparent_udp.go b/modes/transparent_udp/transparent_udp.go
index f9c2efc..ec12b14 100644
--- a/modes/transparent_udp/transparent_udp.go
+++ b/modes/transparent_udp/transparent_udp.go
@@ -42,7 +42,7 @@ import (
"golang.org/x/net/proxy"
- "git.torproject.org/pluggable-transports/goptlib.git"
+ "github.com/OperatorFoundation/shapeshifter-ipc"
"github.com/OperatorFoundation/shapeshifter-dispatcher/common/log"
"github.com/OperatorFoundation/shapeshifter-dispatcher/common/termmon"
"github.com/OperatorFoundation/shapeshifter-dispatcher/transports"