From 9b1f45ff77be8ce3784946204d6634da37569362 Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Sat, 20 Dec 2025 19:19:30 -0600 Subject: [PATCH] Update module path to remove the GitHub --- cmd/reticulum-go/main.go | 22 +++++++++++----------- go.mod | 2 +- internal/config/config.go | 2 +- internal/storage/storage.go | 2 +- pkg/announce/announce.go | 6 +++--- pkg/buffer/buffer.go | 2 +- pkg/channel/channel.go | 4 ++-- pkg/destination/destination.go | 10 +++++----- pkg/identity/identity.go | 6 +++--- pkg/interfaces/auto.go | 4 ++-- pkg/interfaces/auto_test.go | 2 +- pkg/interfaces/interface.go | 4 ++-- pkg/interfaces/interface_test.go | 2 +- pkg/interfaces/tcp.go | 4 ++-- pkg/interfaces/tcp_darwin.go | 2 +- pkg/interfaces/tcp_freebsd.go | 2 +- pkg/interfaces/tcp_linux.go | 2 +- pkg/interfaces/tcp_netbsd.go | 2 +- pkg/interfaces/tcp_openbsd.go | 2 +- pkg/interfaces/tcp_windows.go | 2 +- pkg/interfaces/udp.go | 4 ++-- pkg/interfaces/udp_test.go | 2 +- pkg/link/establishment_test.go | 10 +++++----- pkg/link/link.go | 22 +++++++++++----------- pkg/packet/packet.go | 4 ++-- pkg/packet/receipt.go | 4 ++-- pkg/packet/receipt_test.go | 2 +- pkg/resolver/resolver.go | 2 +- pkg/transport/announce.go | 2 +- pkg/transport/transport.go | 18 +++++++++--------- pkg/transport/transport_test.go | 2 +- 31 files changed, 78 insertions(+), 78 deletions(-) diff --git a/cmd/reticulum-go/main.go b/cmd/reticulum-go/main.go index 7191077..efbb23b 100644 --- a/cmd/reticulum-go/main.go +++ b/cmd/reticulum-go/main.go @@ -12,17 +12,17 @@ import ( "syscall" "time" - "github.com/Sudo-Ivan/reticulum-go/internal/config" - "github.com/Sudo-Ivan/reticulum-go/internal/storage" - "github.com/Sudo-Ivan/reticulum-go/pkg/buffer" - "github.com/Sudo-Ivan/reticulum-go/pkg/channel" - "github.com/Sudo-Ivan/reticulum-go/pkg/common" - "github.com/Sudo-Ivan/reticulum-go/pkg/debug" - "github.com/Sudo-Ivan/reticulum-go/pkg/destination" - "github.com/Sudo-Ivan/reticulum-go/pkg/identity" - "github.com/Sudo-Ivan/reticulum-go/pkg/interfaces" - "github.com/Sudo-Ivan/reticulum-go/pkg/packet" - "github.com/Sudo-Ivan/reticulum-go/pkg/transport" + "reticulum-go/internal/config" + "reticulum-go/internal/storage" + "reticulum-go/pkg/buffer" + "reticulum-go/pkg/channel" + "reticulum-go/pkg/common" + "reticulum-go/pkg/debug" + "reticulum-go/pkg/destination" + "reticulum-go/pkg/identity" + "reticulum-go/pkg/interfaces" + "reticulum-go/pkg/packet" + "reticulum-go/pkg/transport" ) var ( diff --git a/go.mod b/go.mod index bb7a20a..68ee241 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/Sudo-Ivan/reticulum-go +module reticulum-go go 1.24.0 diff --git a/internal/config/config.go b/internal/config/config.go index 124ab5a..5f9baab 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -8,7 +8,7 @@ import ( "strconv" "strings" - "github.com/Sudo-Ivan/reticulum-go/pkg/common" + "reticulum-go/pkg/common" ) const ( diff --git a/internal/storage/storage.go b/internal/storage/storage.go index a256562..d98092a 100644 --- a/internal/storage/storage.go +++ b/internal/storage/storage.go @@ -8,7 +8,7 @@ import ( "sync" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/debug" + "reticulum-go/pkg/debug" "github.com/vmihailenco/msgpack/v5" ) diff --git a/pkg/announce/announce.go b/pkg/announce/announce.go index 2f7a340..3a87d28 100644 --- a/pkg/announce/announce.go +++ b/pkg/announce/announce.go @@ -9,9 +9,9 @@ import ( "sync" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/common" - "github.com/Sudo-Ivan/reticulum-go/pkg/debug" - "github.com/Sudo-Ivan/reticulum-go/pkg/identity" + "reticulum-go/pkg/common" + "reticulum-go/pkg/debug" + "reticulum-go/pkg/identity" "golang.org/x/crypto/curve25519" ) diff --git a/pkg/buffer/buffer.go b/pkg/buffer/buffer.go index 6fecc93..8c75f92 100644 --- a/pkg/buffer/buffer.go +++ b/pkg/buffer/buffer.go @@ -8,7 +8,7 @@ import ( "io" "sync" - "github.com/Sudo-Ivan/reticulum-go/pkg/channel" + "reticulum-go/pkg/channel" ) const ( diff --git a/pkg/channel/channel.go b/pkg/channel/channel.go index e7777f4..254b158 100644 --- a/pkg/channel/channel.go +++ b/pkg/channel/channel.go @@ -6,8 +6,8 @@ import ( "sync" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/debug" - "github.com/Sudo-Ivan/reticulum-go/pkg/transport" + "reticulum-go/pkg/debug" + "reticulum-go/pkg/transport" ) const ( diff --git a/pkg/destination/destination.go b/pkg/destination/destination.go index 8e63d6f..113ae36 100644 --- a/pkg/destination/destination.go +++ b/pkg/destination/destination.go @@ -10,11 +10,11 @@ import ( "sync" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/announce" - "github.com/Sudo-Ivan/reticulum-go/pkg/common" - "github.com/Sudo-Ivan/reticulum-go/pkg/debug" - "github.com/Sudo-Ivan/reticulum-go/pkg/identity" - "github.com/Sudo-Ivan/reticulum-go/pkg/packet" + "reticulum-go/pkg/announce" + "reticulum-go/pkg/common" + "reticulum-go/pkg/debug" + "reticulum-go/pkg/identity" + "reticulum-go/pkg/packet" "github.com/vmihailenco/msgpack/v5" "golang.org/x/crypto/curve25519" ) diff --git a/pkg/identity/identity.go b/pkg/identity/identity.go index 4890425..949a4fc 100644 --- a/pkg/identity/identity.go +++ b/pkg/identity/identity.go @@ -15,9 +15,9 @@ import ( "sync" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/common" - "github.com/Sudo-Ivan/reticulum-go/pkg/cryptography" - "github.com/Sudo-Ivan/reticulum-go/pkg/debug" + "reticulum-go/pkg/common" + "reticulum-go/pkg/cryptography" + "reticulum-go/pkg/debug" "github.com/vmihailenco/msgpack/v5" "golang.org/x/crypto/curve25519" "golang.org/x/crypto/hkdf" diff --git a/pkg/interfaces/auto.go b/pkg/interfaces/auto.go index 2eddcf1..aa4fb0d 100644 --- a/pkg/interfaces/auto.go +++ b/pkg/interfaces/auto.go @@ -9,8 +9,8 @@ import ( "sync" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/common" - "github.com/Sudo-Ivan/reticulum-go/pkg/debug" + "reticulum-go/pkg/common" + "reticulum-go/pkg/debug" ) const ( diff --git a/pkg/interfaces/auto_test.go b/pkg/interfaces/auto_test.go index 216916c..872023d 100644 --- a/pkg/interfaces/auto_test.go +++ b/pkg/interfaces/auto_test.go @@ -5,7 +5,7 @@ import ( "testing" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/common" + "reticulum-go/pkg/common" ) func TestNewAutoInterface(t *testing.T) { diff --git a/pkg/interfaces/interface.go b/pkg/interfaces/interface.go index d8cc843..8ad98bc 100644 --- a/pkg/interfaces/interface.go +++ b/pkg/interfaces/interface.go @@ -7,8 +7,8 @@ import ( "sync" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/common" - "github.com/Sudo-Ivan/reticulum-go/pkg/debug" + "reticulum-go/pkg/common" + "reticulum-go/pkg/debug" ) const ( diff --git a/pkg/interfaces/interface_test.go b/pkg/interfaces/interface_test.go index 3e0c140..79313df 100644 --- a/pkg/interfaces/interface_test.go +++ b/pkg/interfaces/interface_test.go @@ -7,7 +7,7 @@ import ( "testing" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/common" + "reticulum-go/pkg/common" ) func TestBaseInterfaceStateChanges(t *testing.T) { diff --git a/pkg/interfaces/tcp.go b/pkg/interfaces/tcp.go index 5ac9ff8..8658247 100644 --- a/pkg/interfaces/tcp.go +++ b/pkg/interfaces/tcp.go @@ -7,8 +7,8 @@ import ( "sync" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/common" - "github.com/Sudo-Ivan/reticulum-go/pkg/debug" + "reticulum-go/pkg/common" + "reticulum-go/pkg/debug" ) const ( diff --git a/pkg/interfaces/tcp_darwin.go b/pkg/interfaces/tcp_darwin.go index c02d867..94ef88f 100644 --- a/pkg/interfaces/tcp_darwin.go +++ b/pkg/interfaces/tcp_darwin.go @@ -7,7 +7,7 @@ import ( "net" "syscall" - "github.com/Sudo-Ivan/reticulum-go/pkg/debug" + "reticulum-go/pkg/debug" ) func (tc *TCPClientInterface) setTimeoutsLinux() error { diff --git a/pkg/interfaces/tcp_freebsd.go b/pkg/interfaces/tcp_freebsd.go index caabd8b..9f788af 100644 --- a/pkg/interfaces/tcp_freebsd.go +++ b/pkg/interfaces/tcp_freebsd.go @@ -7,7 +7,7 @@ import ( "net" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/debug" + "reticulum-go/pkg/debug" ) func (tc *TCPClientInterface) setTimeoutsLinux() error { diff --git a/pkg/interfaces/tcp_linux.go b/pkg/interfaces/tcp_linux.go index 1a0fe65..e1ec567 100644 --- a/pkg/interfaces/tcp_linux.go +++ b/pkg/interfaces/tcp_linux.go @@ -9,7 +9,7 @@ import ( "time" "unsafe" - "github.com/Sudo-Ivan/reticulum-go/pkg/debug" + "reticulum-go/pkg/debug" ) func (tc *TCPClientInterface) setTimeoutsLinux() error { diff --git a/pkg/interfaces/tcp_netbsd.go b/pkg/interfaces/tcp_netbsd.go index 29fa199..ffe4ee3 100644 --- a/pkg/interfaces/tcp_netbsd.go +++ b/pkg/interfaces/tcp_netbsd.go @@ -7,7 +7,7 @@ import ( "net" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/debug" + "reticulum-go/pkg/debug" ) func (tc *TCPClientInterface) setTimeoutsLinux() error { diff --git a/pkg/interfaces/tcp_openbsd.go b/pkg/interfaces/tcp_openbsd.go index 8ec0e5f..773d4ae 100644 --- a/pkg/interfaces/tcp_openbsd.go +++ b/pkg/interfaces/tcp_openbsd.go @@ -7,7 +7,7 @@ import ( "net" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/debug" + "reticulum-go/pkg/debug" ) func (tc *TCPClientInterface) setTimeoutsLinux() error { diff --git a/pkg/interfaces/tcp_windows.go b/pkg/interfaces/tcp_windows.go index c81f001..5e131f1 100644 --- a/pkg/interfaces/tcp_windows.go +++ b/pkg/interfaces/tcp_windows.go @@ -5,7 +5,7 @@ import ( "net" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/debug" + "reticulum-go/pkg/debug" ) func (tc *TCPClientInterface) setTimeoutsLinux() error { diff --git a/pkg/interfaces/udp.go b/pkg/interfaces/udp.go index 03b9c30..6099a23 100644 --- a/pkg/interfaces/udp.go +++ b/pkg/interfaces/udp.go @@ -5,8 +5,8 @@ import ( "net" "sync" - "github.com/Sudo-Ivan/reticulum-go/pkg/common" - "github.com/Sudo-Ivan/reticulum-go/pkg/debug" + "reticulum-go/pkg/common" + "reticulum-go/pkg/debug" ) type UDPInterface struct { diff --git a/pkg/interfaces/udp_test.go b/pkg/interfaces/udp_test.go index 7492c44..e09f33c 100644 --- a/pkg/interfaces/udp_test.go +++ b/pkg/interfaces/udp_test.go @@ -3,7 +3,7 @@ package interfaces import ( "testing" - "github.com/Sudo-Ivan/reticulum-go/pkg/common" + "reticulum-go/pkg/common" ) func TestNewUDPInterface(t *testing.T) { diff --git a/pkg/link/establishment_test.go b/pkg/link/establishment_test.go index d37a767..ed9a2ba 100644 --- a/pkg/link/establishment_test.go +++ b/pkg/link/establishment_test.go @@ -4,11 +4,11 @@ import ( "testing" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/common" - "github.com/Sudo-Ivan/reticulum-go/pkg/destination" - "github.com/Sudo-Ivan/reticulum-go/pkg/identity" - "github.com/Sudo-Ivan/reticulum-go/pkg/packet" - "github.com/Sudo-Ivan/reticulum-go/pkg/transport" + "reticulum-go/pkg/common" + "reticulum-go/pkg/destination" + "reticulum-go/pkg/identity" + "reticulum-go/pkg/packet" + "reticulum-go/pkg/transport" ) func TestEphemeralKeyGeneration(t *testing.T) { diff --git a/pkg/link/link.go b/pkg/link/link.go index 63018d7..a275992 100644 --- a/pkg/link/link.go +++ b/pkg/link/link.go @@ -13,17 +13,17 @@ import ( "sync" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/channel" - "github.com/Sudo-Ivan/reticulum-go/pkg/common" - "github.com/Sudo-Ivan/reticulum-go/pkg/cryptography" - "github.com/Sudo-Ivan/reticulum-go/pkg/debug" - "github.com/Sudo-Ivan/reticulum-go/pkg/destination" - "github.com/Sudo-Ivan/reticulum-go/pkg/identity" - "github.com/Sudo-Ivan/reticulum-go/pkg/packet" - "github.com/Sudo-Ivan/reticulum-go/pkg/pathfinder" - "github.com/Sudo-Ivan/reticulum-go/pkg/resolver" - "github.com/Sudo-Ivan/reticulum-go/pkg/resource" - "github.com/Sudo-Ivan/reticulum-go/pkg/transport" + "reticulum-go/pkg/channel" + "reticulum-go/pkg/common" + "reticulum-go/pkg/cryptography" + "reticulum-go/pkg/debug" + "reticulum-go/pkg/destination" + "reticulum-go/pkg/identity" + "reticulum-go/pkg/packet" + "reticulum-go/pkg/pathfinder" + "reticulum-go/pkg/resolver" + "reticulum-go/pkg/resource" + "reticulum-go/pkg/transport" "github.com/vmihailenco/msgpack/v5" ) diff --git a/pkg/packet/packet.go b/pkg/packet/packet.go index 72f3158..b105d02 100644 --- a/pkg/packet/packet.go +++ b/pkg/packet/packet.go @@ -8,8 +8,8 @@ import ( "fmt" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/debug" - "github.com/Sudo-Ivan/reticulum-go/pkg/identity" + "reticulum-go/pkg/debug" + "reticulum-go/pkg/identity" ) const ( diff --git a/pkg/packet/receipt.go b/pkg/packet/receipt.go index 5b3fead..44120c5 100644 --- a/pkg/packet/receipt.go +++ b/pkg/packet/receipt.go @@ -5,8 +5,8 @@ import ( "sync" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/debug" - "github.com/Sudo-Ivan/reticulum-go/pkg/identity" + "reticulum-go/pkg/debug" + "reticulum-go/pkg/identity" ) const ( diff --git a/pkg/packet/receipt_test.go b/pkg/packet/receipt_test.go index cab8488..c2e6996 100644 --- a/pkg/packet/receipt_test.go +++ b/pkg/packet/receipt_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/identity" + "reticulum-go/pkg/identity" ) func TestPacketReceiptCreation(t *testing.T) { diff --git a/pkg/resolver/resolver.go b/pkg/resolver/resolver.go index 71c395e..b66a931 100644 --- a/pkg/resolver/resolver.go +++ b/pkg/resolver/resolver.go @@ -7,7 +7,7 @@ import ( "strings" "sync" - "github.com/Sudo-Ivan/reticulum-go/pkg/identity" + "reticulum-go/pkg/identity" ) type Resolver struct { diff --git a/pkg/transport/announce.go b/pkg/transport/announce.go index d552902..3833fa3 100644 --- a/pkg/transport/announce.go +++ b/pkg/transport/announce.go @@ -7,7 +7,7 @@ import ( "sync" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/rate" + "reticulum-go/pkg/rate" ) const ( diff --git a/pkg/transport/transport.go b/pkg/transport/transport.go index 46dd752..f5dac63 100644 --- a/pkg/transport/transport.go +++ b/pkg/transport/transport.go @@ -11,15 +11,15 @@ import ( "sync" "time" - "github.com/Sudo-Ivan/reticulum-go/pkg/announce" - "github.com/Sudo-Ivan/reticulum-go/pkg/common" - "github.com/Sudo-Ivan/reticulum-go/pkg/debug" - "github.com/Sudo-Ivan/reticulum-go/pkg/destination" - "github.com/Sudo-Ivan/reticulum-go/pkg/identity" - "github.com/Sudo-Ivan/reticulum-go/pkg/interfaces" - "github.com/Sudo-Ivan/reticulum-go/pkg/packet" - "github.com/Sudo-Ivan/reticulum-go/pkg/pathfinder" - "github.com/Sudo-Ivan/reticulum-go/pkg/rate" + "reticulum-go/pkg/announce" + "reticulum-go/pkg/common" + "reticulum-go/pkg/debug" + "reticulum-go/pkg/destination" + "reticulum-go/pkg/identity" + "reticulum-go/pkg/interfaces" + "reticulum-go/pkg/packet" + "reticulum-go/pkg/pathfinder" + "reticulum-go/pkg/rate" ) var ( diff --git a/pkg/transport/transport_test.go b/pkg/transport/transport_test.go index 54dc06f..7e522ba 100644 --- a/pkg/transport/transport_test.go +++ b/pkg/transport/transport_test.go @@ -4,7 +4,7 @@ import ( "crypto/rand" "testing" - "github.com/Sudo-Ivan/reticulum-go/pkg/common" + "reticulum-go/pkg/common" ) func randomBytes(n int) []byte {