Update module path to remove the GitHub

This commit is contained in:
2025-12-20 19:19:30 -06:00
parent 0efd83f0e8
commit 9b1f45ff77
31 changed files with 78 additions and 78 deletions

View File

@@ -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 (

2
go.mod
View File

@@ -1,4 +1,4 @@
module github.com/Sudo-Ivan/reticulum-go
module reticulum-go
go 1.24.0

View File

@@ -8,7 +8,7 @@ import (
"strconv"
"strings"
"github.com/Sudo-Ivan/reticulum-go/pkg/common"
"reticulum-go/pkg/common"
)
const (

View File

@@ -8,7 +8,7 @@ import (
"sync"
"time"
"github.com/Sudo-Ivan/reticulum-go/pkg/debug"
"reticulum-go/pkg/debug"
"github.com/vmihailenco/msgpack/v5"
)

View File

@@ -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"
)

View File

@@ -8,7 +8,7 @@ import (
"io"
"sync"
"github.com/Sudo-Ivan/reticulum-go/pkg/channel"
"reticulum-go/pkg/channel"
)
const (

View File

@@ -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 (

View File

@@ -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"
)

View File

@@ -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"

View File

@@ -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 (

View File

@@ -5,7 +5,7 @@ import (
"testing"
"time"
"github.com/Sudo-Ivan/reticulum-go/pkg/common"
"reticulum-go/pkg/common"
)
func TestNewAutoInterface(t *testing.T) {

View File

@@ -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 (

View File

@@ -7,7 +7,7 @@ import (
"testing"
"time"
"github.com/Sudo-Ivan/reticulum-go/pkg/common"
"reticulum-go/pkg/common"
)
func TestBaseInterfaceStateChanges(t *testing.T) {

View File

@@ -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 (

View File

@@ -7,7 +7,7 @@ import (
"net"
"syscall"
"github.com/Sudo-Ivan/reticulum-go/pkg/debug"
"reticulum-go/pkg/debug"
)
func (tc *TCPClientInterface) setTimeoutsLinux() error {

View File

@@ -7,7 +7,7 @@ import (
"net"
"time"
"github.com/Sudo-Ivan/reticulum-go/pkg/debug"
"reticulum-go/pkg/debug"
)
func (tc *TCPClientInterface) setTimeoutsLinux() error {

View File

@@ -9,7 +9,7 @@ import (
"time"
"unsafe"
"github.com/Sudo-Ivan/reticulum-go/pkg/debug"
"reticulum-go/pkg/debug"
)
func (tc *TCPClientInterface) setTimeoutsLinux() error {

View File

@@ -7,7 +7,7 @@ import (
"net"
"time"
"github.com/Sudo-Ivan/reticulum-go/pkg/debug"
"reticulum-go/pkg/debug"
)
func (tc *TCPClientInterface) setTimeoutsLinux() error {

View File

@@ -7,7 +7,7 @@ import (
"net"
"time"
"github.com/Sudo-Ivan/reticulum-go/pkg/debug"
"reticulum-go/pkg/debug"
)
func (tc *TCPClientInterface) setTimeoutsLinux() error {

View File

@@ -5,7 +5,7 @@ import (
"net"
"time"
"github.com/Sudo-Ivan/reticulum-go/pkg/debug"
"reticulum-go/pkg/debug"
)
func (tc *TCPClientInterface) setTimeoutsLinux() error {

View File

@@ -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 {

View File

@@ -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) {

View File

@@ -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) {

View File

@@ -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"
)

View File

@@ -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 (

View File

@@ -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 (

View File

@@ -4,7 +4,7 @@ import (
"testing"
"time"
"github.com/Sudo-Ivan/reticulum-go/pkg/identity"
"reticulum-go/pkg/identity"
)
func TestPacketReceiptCreation(t *testing.T) {

View File

@@ -7,7 +7,7 @@ import (
"strings"
"sync"
"github.com/Sudo-Ivan/reticulum-go/pkg/identity"
"reticulum-go/pkg/identity"
)
type Resolver struct {

View File

@@ -7,7 +7,7 @@ import (
"sync"
"time"
"github.com/Sudo-Ivan/reticulum-go/pkg/rate"
"reticulum-go/pkg/rate"
)
const (

View File

@@ -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 (

View File

@@ -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 {