aboutsummaryrefslogtreecommitdiff
path: root/network/protocol/sideband64k
diff options
context:
space:
mode:
Diffstat (limited to 'network/protocol/sideband64k')
-rw-r--r--network/protocol/sideband64k/append.go2
-rw-r--r--network/protocol/sideband64k/append_helpers_test.go2
-rw-r--r--network/protocol/sideband64k/append_preserves_dst_on_error_test.go2
-rw-r--r--network/protocol/sideband64k/chunk_writer_write_and_read_from_test.go2
-rw-r--r--network/protocol/sideband64k/constants.go2
-rw-r--r--network/protocol/sideband64k/decoder.go2
-rw-r--r--network/protocol/sideband64k/decoder_data_control_and_keepalive_test.go2
-rw-r--r--network/protocol/sideband64k/decoder_invalid_band_test.go2
-rw-r--r--network/protocol/sideband64k/decoder_invalid_empty_payload_test.go2
-rw-r--r--network/protocol/sideband64k/decoder_malformed_pktline_test.go4
-rw-r--r--network/protocol/sideband64k/decoder_partial_read_test.go2
-rw-r--r--network/protocol/sideband64k/decoder_peek_test.go2
-rw-r--r--network/protocol/sideband64k/decoder_resync_after_over_max_data_test.go2
-rw-r--r--network/protocol/sideband64k/decoder_resync_after_over_wire_max_test.go4
-rw-r--r--network/protocol/sideband64k/decoder_unexpected_eof_test.go2
-rw-r--r--network/protocol/sideband64k/encoder.go4
-rw-r--r--network/protocol/sideband64k/encoder_buffered_flush_behavior_test.go2
-rw-r--r--network/protocol/sideband64k/encoder_partial_write_test.go2
-rw-r--r--network/protocol/sideband64k/encoder_set_max_data_cannot_exceed_wire_limit_test.go2
-rw-r--r--network/protocol/sideband64k/encoder_writes_frames_test.go2
20 files changed, 23 insertions, 23 deletions
diff --git a/network/protocol/sideband64k/append.go b/network/protocol/sideband64k/append.go
index db6527f8..5df8b447 100644
--- a/network/protocol/sideband64k/append.go
+++ b/network/protocol/sideband64k/append.go
@@ -3,7 +3,7 @@ package sideband64k
import (
"fmt"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/network/protocol/pktline"
)
// AppendBand appends one side-band-64k data frame to dst.
diff --git a/network/protocol/sideband64k/append_helpers_test.go b/network/protocol/sideband64k/append_helpers_test.go
index 03196c38..f68c8a62 100644
--- a/network/protocol/sideband64k/append_helpers_test.go
+++ b/network/protocol/sideband64k/append_helpers_test.go
@@ -3,7 +3,7 @@ package sideband64k_test
import (
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/sideband64k"
+ "lindenii.org/go/furgit/network/protocol/sideband64k"
)
func TestAppendHelpers(t *testing.T) {
diff --git a/network/protocol/sideband64k/append_preserves_dst_on_error_test.go b/network/protocol/sideband64k/append_preserves_dst_on_error_test.go
index 6fed4e4a..33272999 100644
--- a/network/protocol/sideband64k/append_preserves_dst_on_error_test.go
+++ b/network/protocol/sideband64k/append_preserves_dst_on_error_test.go
@@ -5,7 +5,7 @@ import (
"errors"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/sideband64k"
+ "lindenii.org/go/furgit/network/protocol/sideband64k"
)
func TestAppendBandPreservesDstOnError(t *testing.T) {
diff --git a/network/protocol/sideband64k/chunk_writer_write_and_read_from_test.go b/network/protocol/sideband64k/chunk_writer_write_and_read_from_test.go
index ef2b0fff..c1ace728 100644
--- a/network/protocol/sideband64k/chunk_writer_write_and_read_from_test.go
+++ b/network/protocol/sideband64k/chunk_writer_write_and_read_from_test.go
@@ -6,7 +6,7 @@ import (
"strings"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/sideband64k"
+ "lindenii.org/go/furgit/network/protocol/sideband64k"
)
func TestChunkWriterWriteAndReadFrom(t *testing.T) {
diff --git a/network/protocol/sideband64k/constants.go b/network/protocol/sideband64k/constants.go
index 2a6a2e47..2f79d907 100644
--- a/network/protocol/sideband64k/constants.go
+++ b/network/protocol/sideband64k/constants.go
@@ -1,6 +1,6 @@
package sideband64k
-import "codeberg.org/lindenii/furgit/network/protocol/pktline"
+import "lindenii.org/go/furgit/network/protocol/pktline"
const (
// PacketMax is the maximum on-wire pkt-line size used by side-band-64k.
diff --git a/network/protocol/sideband64k/decoder.go b/network/protocol/sideband64k/decoder.go
index e34f5d12..0986920d 100644
--- a/network/protocol/sideband64k/decoder.go
+++ b/network/protocol/sideband64k/decoder.go
@@ -4,7 +4,7 @@ import (
"fmt"
"io"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/network/protocol/pktline"
)
// ReadOptions controls sideband decoding behavior.
diff --git a/network/protocol/sideband64k/decoder_data_control_and_keepalive_test.go b/network/protocol/sideband64k/decoder_data_control_and_keepalive_test.go
index 9103c492..ff7e3dde 100644
--- a/network/protocol/sideband64k/decoder_data_control_and_keepalive_test.go
+++ b/network/protocol/sideband64k/decoder_data_control_and_keepalive_test.go
@@ -4,7 +4,7 @@ import (
"strings"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/sideband64k"
+ "lindenii.org/go/furgit/network/protocol/sideband64k"
)
func TestDecoderDataControlAndKeepalive(t *testing.T) {
diff --git a/network/protocol/sideband64k/decoder_invalid_band_test.go b/network/protocol/sideband64k/decoder_invalid_band_test.go
index a4bc11a9..00c2bcaf 100644
--- a/network/protocol/sideband64k/decoder_invalid_band_test.go
+++ b/network/protocol/sideband64k/decoder_invalid_band_test.go
@@ -5,7 +5,7 @@ import (
"strings"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/sideband64k"
+ "lindenii.org/go/furgit/network/protocol/sideband64k"
)
func TestDecoderInvalidBand(t *testing.T) {
diff --git a/network/protocol/sideband64k/decoder_invalid_empty_payload_test.go b/network/protocol/sideband64k/decoder_invalid_empty_payload_test.go
index df9faa71..54bd9246 100644
--- a/network/protocol/sideband64k/decoder_invalid_empty_payload_test.go
+++ b/network/protocol/sideband64k/decoder_invalid_empty_payload_test.go
@@ -5,7 +5,7 @@ import (
"strings"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/sideband64k"
+ "lindenii.org/go/furgit/network/protocol/sideband64k"
)
func TestDecoderInvalidEmptyPayload(t *testing.T) {
diff --git a/network/protocol/sideband64k/decoder_malformed_pktline_test.go b/network/protocol/sideband64k/decoder_malformed_pktline_test.go
index 5e4e4551..900dcdb7 100644
--- a/network/protocol/sideband64k/decoder_malformed_pktline_test.go
+++ b/network/protocol/sideband64k/decoder_malformed_pktline_test.go
@@ -5,8 +5,8 @@ import (
"strings"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
- "codeberg.org/lindenii/furgit/network/protocol/sideband64k"
+ "lindenii.org/go/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/network/protocol/sideband64k"
)
func TestDecoderInvalid0003(t *testing.T) {
diff --git a/network/protocol/sideband64k/decoder_partial_read_test.go b/network/protocol/sideband64k/decoder_partial_read_test.go
index 3f103787..fe2e2fc1 100644
--- a/network/protocol/sideband64k/decoder_partial_read_test.go
+++ b/network/protocol/sideband64k/decoder_partial_read_test.go
@@ -3,7 +3,7 @@ package sideband64k_test
import (
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/sideband64k"
+ "lindenii.org/go/furgit/network/protocol/sideband64k"
)
func TestDecoderHandlesPartialReads(t *testing.T) {
diff --git a/network/protocol/sideband64k/decoder_peek_test.go b/network/protocol/sideband64k/decoder_peek_test.go
index 31397762..00496dbc 100644
--- a/network/protocol/sideband64k/decoder_peek_test.go
+++ b/network/protocol/sideband64k/decoder_peek_test.go
@@ -4,7 +4,7 @@ import (
"strings"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/sideband64k"
+ "lindenii.org/go/furgit/network/protocol/sideband64k"
)
func TestDecoderPeek(t *testing.T) {
diff --git a/network/protocol/sideband64k/decoder_resync_after_over_max_data_test.go b/network/protocol/sideband64k/decoder_resync_after_over_max_data_test.go
index b0ae600a..2573e8bf 100644
--- a/network/protocol/sideband64k/decoder_resync_after_over_max_data_test.go
+++ b/network/protocol/sideband64k/decoder_resync_after_over_max_data_test.go
@@ -6,7 +6,7 @@ import (
"errors"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/sideband64k"
+ "lindenii.org/go/furgit/network/protocol/sideband64k"
)
func TestDecoderResyncAfterOverMaxData(t *testing.T) {
diff --git a/network/protocol/sideband64k/decoder_resync_after_over_wire_max_test.go b/network/protocol/sideband64k/decoder_resync_after_over_wire_max_test.go
index 73966925..6b5ba287 100644
--- a/network/protocol/sideband64k/decoder_resync_after_over_wire_max_test.go
+++ b/network/protocol/sideband64k/decoder_resync_after_over_wire_max_test.go
@@ -5,8 +5,8 @@ import (
"errors"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
- "codeberg.org/lindenii/furgit/network/protocol/sideband64k"
+ "lindenii.org/go/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/network/protocol/sideband64k"
)
func TestDecoderResyncAfterOverWireMax(t *testing.T) {
diff --git a/network/protocol/sideband64k/decoder_unexpected_eof_test.go b/network/protocol/sideband64k/decoder_unexpected_eof_test.go
index d9d71fb9..5f5004b0 100644
--- a/network/protocol/sideband64k/decoder_unexpected_eof_test.go
+++ b/network/protocol/sideband64k/decoder_unexpected_eof_test.go
@@ -6,7 +6,7 @@ import (
"strings"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/sideband64k"
+ "lindenii.org/go/furgit/network/protocol/sideband64k"
)
func TestDecoderUnexpectedEOF(t *testing.T) {
diff --git a/network/protocol/sideband64k/encoder.go b/network/protocol/sideband64k/encoder.go
index 6cdef38a..250407c6 100644
--- a/network/protocol/sideband64k/encoder.go
+++ b/network/protocol/sideband64k/encoder.go
@@ -3,8 +3,8 @@ package sideband64k
import (
"fmt"
- "codeberg.org/lindenii/furgit/common/iowrap"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/common/iowrap"
+ "lindenii.org/go/furgit/network/protocol/pktline"
)
// Encoder writes side-band-64k frames to a flush-capable output transport.
diff --git a/network/protocol/sideband64k/encoder_buffered_flush_behavior_test.go b/network/protocol/sideband64k/encoder_buffered_flush_behavior_test.go
index 83103ea3..35368bf5 100644
--- a/network/protocol/sideband64k/encoder_buffered_flush_behavior_test.go
+++ b/network/protocol/sideband64k/encoder_buffered_flush_behavior_test.go
@@ -5,7 +5,7 @@ import (
"bytes"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/sideband64k"
+ "lindenii.org/go/furgit/network/protocol/sideband64k"
)
func TestEncoderBufferedFlushBehavior(t *testing.T) {
diff --git a/network/protocol/sideband64k/encoder_partial_write_test.go b/network/protocol/sideband64k/encoder_partial_write_test.go
index 97c8f762..4e2ad81b 100644
--- a/network/protocol/sideband64k/encoder_partial_write_test.go
+++ b/network/protocol/sideband64k/encoder_partial_write_test.go
@@ -5,7 +5,7 @@ import (
"io"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/sideband64k"
+ "lindenii.org/go/furgit/network/protocol/sideband64k"
)
func TestEncoderHandlesPartialWrites(t *testing.T) {
diff --git a/network/protocol/sideband64k/encoder_set_max_data_cannot_exceed_wire_limit_test.go b/network/protocol/sideband64k/encoder_set_max_data_cannot_exceed_wire_limit_test.go
index 2bfcf073..b6db67d6 100644
--- a/network/protocol/sideband64k/encoder_set_max_data_cannot_exceed_wire_limit_test.go
+++ b/network/protocol/sideband64k/encoder_set_max_data_cannot_exceed_wire_limit_test.go
@@ -5,7 +5,7 @@ import (
"errors"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/sideband64k"
+ "lindenii.org/go/furgit/network/protocol/sideband64k"
)
func TestEncoderSetMaxDataCannotExceedWireLimit(t *testing.T) {
diff --git a/network/protocol/sideband64k/encoder_writes_frames_test.go b/network/protocol/sideband64k/encoder_writes_frames_test.go
index 85fe5845..29e32244 100644
--- a/network/protocol/sideband64k/encoder_writes_frames_test.go
+++ b/network/protocol/sideband64k/encoder_writes_frames_test.go
@@ -5,7 +5,7 @@ import (
"bytes"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/sideband64k"
+ "lindenii.org/go/furgit/network/protocol/sideband64k"
)
func TestEncoderWritesFrames(t *testing.T) {