summaryrefslogtreecommitdiff
path: root/transports/obfs4
diff options
context:
space:
mode:
Diffstat (limited to 'transports/obfs4')
-rw-r--r--transports/obfs4/framing/framing.go4
-rw-r--r--transports/obfs4/handshake_ntor.go8
-rw-r--r--transports/obfs4/handshake_ntor_test.go4
-rw-r--r--transports/obfs4/obfs4.go12
-rw-r--r--transports/obfs4/packet.go4
-rw-r--r--transports/obfs4/statefile.go6
6 files changed, 19 insertions, 19 deletions
diff --git a/transports/obfs4/framing/framing.go b/transports/obfs4/framing/framing.go
index 815a990..9eaba69 100644
--- a/transports/obfs4/framing/framing.go
+++ b/transports/obfs4/framing/framing.go
@@ -69,8 +69,8 @@ import (
"golang.org/x/crypto/nacl/secretbox"
- "git.torproject.org/pluggable-transports/obfs4.git/common/csrand"
- "git.torproject.org/pluggable-transports/obfs4.git/common/drbg"
+ "github.com/OperatorFoundation/obfs4/common/csrand"
+ "github.com/OperatorFoundation/obfs4/common/drbg"
)
const (
diff --git a/transports/obfs4/handshake_ntor.go b/transports/obfs4/handshake_ntor.go
index 57de460..ed7c114 100644
--- a/transports/obfs4/handshake_ntor.go
+++ b/transports/obfs4/handshake_ntor.go
@@ -38,10 +38,10 @@ import (
"strconv"
"time"
- "git.torproject.org/pluggable-transports/obfs4.git/common/csrand"
- "git.torproject.org/pluggable-transports/obfs4.git/common/ntor"
- "git.torproject.org/pluggable-transports/obfs4.git/common/replayfilter"
- "git.torproject.org/pluggable-transports/obfs4.git/transports/obfs4/framing"
+ "github.com/OperatorFoundation/obfs4/common/csrand"
+ "github.com/OperatorFoundation/obfs4/common/ntor"
+ "github.com/OperatorFoundation/obfs4/common/replayfilter"
+ "github.com/OperatorFoundation/obfs4/transports/obfs4/framing"
)
const (
diff --git a/transports/obfs4/handshake_ntor_test.go b/transports/obfs4/handshake_ntor_test.go
index b575093..04afcef 100644
--- a/transports/obfs4/handshake_ntor_test.go
+++ b/transports/obfs4/handshake_ntor_test.go
@@ -31,8 +31,8 @@ import (
"bytes"
"testing"
- "git.torproject.org/pluggable-transports/obfs4.git/common/ntor"
- "git.torproject.org/pluggable-transports/obfs4.git/common/replayfilter"
+ "github.com/OperatorFoundation/obfs4/common/ntor"
+ "github.com/OperatorFoundation/obfs4/common/replayfilter"
)
func TestHandshakeNtorClient(t *testing.T) {
diff --git a/transports/obfs4/obfs4.go b/transports/obfs4/obfs4.go
index 40b1406..269e1c6 100644
--- a/transports/obfs4/obfs4.go
+++ b/transports/obfs4/obfs4.go
@@ -41,12 +41,12 @@ import (
"time"
"git.torproject.org/pluggable-transports/goptlib.git"
- "git.torproject.org/pluggable-transports/obfs4.git/common/drbg"
- "git.torproject.org/pluggable-transports/obfs4.git/common/ntor"
- "git.torproject.org/pluggable-transports/obfs4.git/common/probdist"
- "git.torproject.org/pluggable-transports/obfs4.git/common/replayfilter"
- "git.torproject.org/pluggable-transports/obfs4.git/transports/base"
- "git.torproject.org/pluggable-transports/obfs4.git/transports/obfs4/framing"
+ "github.com/OperatorFoundation/obfs4/common/drbg"
+ "github.com/OperatorFoundation/obfs4/common/ntor"
+ "github.com/OperatorFoundation/obfs4/common/probdist"
+ "github.com/OperatorFoundation/obfs4/common/replayfilter"
+ "github.com/OperatorFoundation/obfs4/transports/base"
+ "github.com/OperatorFoundation/obfs4/transports/obfs4/framing"
)
const (
diff --git a/transports/obfs4/packet.go b/transports/obfs4/packet.go
index 461ad54..ac3028a 100644
--- a/transports/obfs4/packet.go
+++ b/transports/obfs4/packet.go
@@ -33,8 +33,8 @@ import (
"fmt"
"io"
- "git.torproject.org/pluggable-transports/obfs4.git/common/drbg"
- "git.torproject.org/pluggable-transports/obfs4.git/transports/obfs4/framing"
+ "github.com/OperatorFoundation/obfs4/common/drbg"
+ "github.com/OperatorFoundation/obfs4/transports/obfs4/framing"
)
const (
diff --git a/transports/obfs4/statefile.go b/transports/obfs4/statefile.go
index 6c34f35..6f89c6c 100644
--- a/transports/obfs4/statefile.go
+++ b/transports/obfs4/statefile.go
@@ -38,9 +38,9 @@ import (
"strings"
"git.torproject.org/pluggable-transports/goptlib.git"
- "git.torproject.org/pluggable-transports/obfs4.git/common/csrand"
- "git.torproject.org/pluggable-transports/obfs4.git/common/drbg"
- "git.torproject.org/pluggable-transports/obfs4.git/common/ntor"
+ "github.com/OperatorFoundation/obfs4/common/csrand"
+ "github.com/OperatorFoundation/obfs4/common/drbg"
+ "github.com/OperatorFoundation/obfs4/common/ntor"
)
const (