aboutsummaryrefslogtreecommitdiff
path: root/network/protocol/pktline
diff options
context:
space:
mode:
Diffstat (limited to 'network/protocol/pktline')
-rw-r--r--network/protocol/pktline/append_data_preserves_dst_on_error_test.go2
-rw-r--r--network/protocol/pktline/append_helpers_test.go2
-rw-r--r--network/protocol/pktline/chunk_writer_write_and_read_from_test.go2
-rw-r--r--network/protocol/pktline/decoder_data_control_and_0004_test.go2
-rw-r--r--network/protocol/pktline/decoder_invalid_0003_test.go2
-rw-r--r--network/protocol/pktline/decoder_peek_test.go2
-rw-r--r--network/protocol/pktline/decoder_rejects_over_maximum_length_test.go2
-rw-r--r--network/protocol/pktline/decoder_resync_after_over_max_data_test.go2
-rw-r--r--network/protocol/pktline/decoder_resync_after_over_wire_max_test.go2
-rw-r--r--network/protocol/pktline/decoder_unexpected_eof_test.go2
-rw-r--r--network/protocol/pktline/encode_length_header_test.go2
-rw-r--r--network/protocol/pktline/encoder.go2
-rw-r--r--network/protocol/pktline/encoder_buffered_flush_and_f_flush_test.go2
-rw-r--r--network/protocol/pktline/encoder_buffered_flush_behavior_test.go2
-rw-r--r--network/protocol/pktline/encoder_set_max_data_cannot_exceed_wire_limit_test.go2
-rw-r--r--network/protocol/pktline/encoder_writes_frames_test.go2
-rw-r--r--network/protocol/pktline/parse_length_header_test.go2
17 files changed, 17 insertions, 17 deletions
diff --git a/network/protocol/pktline/append_data_preserves_dst_on_error_test.go b/network/protocol/pktline/append_data_preserves_dst_on_error_test.go
index d127fb39..61dca553 100644
--- a/network/protocol/pktline/append_data_preserves_dst_on_error_test.go
+++ b/network/protocol/pktline/append_data_preserves_dst_on_error_test.go
@@ -5,7 +5,7 @@ import (
"errors"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/network/protocol/pktline"
)
func TestAppendDataPreservesDstOnError(t *testing.T) {
diff --git a/network/protocol/pktline/append_helpers_test.go b/network/protocol/pktline/append_helpers_test.go
index 259ada16..e84b543f 100644
--- a/network/protocol/pktline/append_helpers_test.go
+++ b/network/protocol/pktline/append_helpers_test.go
@@ -3,7 +3,7 @@ package pktline_test
import (
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/network/protocol/pktline"
)
func TestAppendHelpers(t *testing.T) {
diff --git a/network/protocol/pktline/chunk_writer_write_and_read_from_test.go b/network/protocol/pktline/chunk_writer_write_and_read_from_test.go
index efe19e23..8c524277 100644
--- a/network/protocol/pktline/chunk_writer_write_and_read_from_test.go
+++ b/network/protocol/pktline/chunk_writer_write_and_read_from_test.go
@@ -6,7 +6,7 @@ import (
"strings"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/network/protocol/pktline"
)
func TestChunkWriterWriteAndReadFrom(t *testing.T) {
diff --git a/network/protocol/pktline/decoder_data_control_and_0004_test.go b/network/protocol/pktline/decoder_data_control_and_0004_test.go
index ab92b603..3aadb3fc 100644
--- a/network/protocol/pktline/decoder_data_control_and_0004_test.go
+++ b/network/protocol/pktline/decoder_data_control_and_0004_test.go
@@ -4,7 +4,7 @@ import (
"strings"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/network/protocol/pktline"
)
func TestDecoderDataControlAnd0004(t *testing.T) {
diff --git a/network/protocol/pktline/decoder_invalid_0003_test.go b/network/protocol/pktline/decoder_invalid_0003_test.go
index 716da3f2..aafdca34 100644
--- a/network/protocol/pktline/decoder_invalid_0003_test.go
+++ b/network/protocol/pktline/decoder_invalid_0003_test.go
@@ -5,7 +5,7 @@ import (
"strings"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/network/protocol/pktline"
)
func TestDecoderInvalid0003(t *testing.T) {
diff --git a/network/protocol/pktline/decoder_peek_test.go b/network/protocol/pktline/decoder_peek_test.go
index a67da881..16ae261c 100644
--- a/network/protocol/pktline/decoder_peek_test.go
+++ b/network/protocol/pktline/decoder_peek_test.go
@@ -4,7 +4,7 @@ import (
"strings"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/network/protocol/pktline"
)
func TestDecoderPeek(t *testing.T) {
diff --git a/network/protocol/pktline/decoder_rejects_over_maximum_length_test.go b/network/protocol/pktline/decoder_rejects_over_maximum_length_test.go
index 357bfc36..1b4ba540 100644
--- a/network/protocol/pktline/decoder_rejects_over_maximum_length_test.go
+++ b/network/protocol/pktline/decoder_rejects_over_maximum_length_test.go
@@ -5,7 +5,7 @@ import (
"strings"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/network/protocol/pktline"
)
func TestDecoderRejectsOverMaximumLength(t *testing.T) {
diff --git a/network/protocol/pktline/decoder_resync_after_over_max_data_test.go b/network/protocol/pktline/decoder_resync_after_over_max_data_test.go
index 42a7572e..a4731ff5 100644
--- a/network/protocol/pktline/decoder_resync_after_over_max_data_test.go
+++ b/network/protocol/pktline/decoder_resync_after_over_max_data_test.go
@@ -6,7 +6,7 @@ import (
"errors"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/network/protocol/pktline"
)
func TestDecoderResyncAfterOverMaxData(t *testing.T) {
diff --git a/network/protocol/pktline/decoder_resync_after_over_wire_max_test.go b/network/protocol/pktline/decoder_resync_after_over_wire_max_test.go
index 9413823b..a250df14 100644
--- a/network/protocol/pktline/decoder_resync_after_over_wire_max_test.go
+++ b/network/protocol/pktline/decoder_resync_after_over_wire_max_test.go
@@ -5,7 +5,7 @@ import (
"errors"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/network/protocol/pktline"
)
func TestDecoderResyncAfterOverWireMax(t *testing.T) {
diff --git a/network/protocol/pktline/decoder_unexpected_eof_test.go b/network/protocol/pktline/decoder_unexpected_eof_test.go
index e1bf4457..58a7b563 100644
--- a/network/protocol/pktline/decoder_unexpected_eof_test.go
+++ b/network/protocol/pktline/decoder_unexpected_eof_test.go
@@ -6,7 +6,7 @@ import (
"strings"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/network/protocol/pktline"
)
func TestDecoderUnexpectedEOF(t *testing.T) {
diff --git a/network/protocol/pktline/encode_length_header_test.go b/network/protocol/pktline/encode_length_header_test.go
index 38a980f0..f37b153c 100644
--- a/network/protocol/pktline/encode_length_header_test.go
+++ b/network/protocol/pktline/encode_length_header_test.go
@@ -4,7 +4,7 @@ import (
"errors"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/network/protocol/pktline"
)
func TestEncodeLengthHeader(t *testing.T) {
diff --git a/network/protocol/pktline/encoder.go b/network/protocol/pktline/encoder.go
index a7b17108..fb12ecf6 100644
--- a/network/protocol/pktline/encoder.go
+++ b/network/protocol/pktline/encoder.go
@@ -4,7 +4,7 @@ import (
"fmt"
"io"
- "codeberg.org/lindenii/furgit/common/iowrap"
+ "lindenii.org/go/furgit/common/iowrap"
)
// Encoder writes pkt-line frames to a flush-capable output transport.
diff --git a/network/protocol/pktline/encoder_buffered_flush_and_f_flush_test.go b/network/protocol/pktline/encoder_buffered_flush_and_f_flush_test.go
index d0f26878..f134c0fe 100644
--- a/network/protocol/pktline/encoder_buffered_flush_and_f_flush_test.go
+++ b/network/protocol/pktline/encoder_buffered_flush_and_f_flush_test.go
@@ -5,7 +5,7 @@ import (
"bytes"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/network/protocol/pktline"
)
func TestEncoderBufferedFlushAndFFlush(t *testing.T) {
diff --git a/network/protocol/pktline/encoder_buffered_flush_behavior_test.go b/network/protocol/pktline/encoder_buffered_flush_behavior_test.go
index b6d14b4b..ac0a2b6b 100644
--- a/network/protocol/pktline/encoder_buffered_flush_behavior_test.go
+++ b/network/protocol/pktline/encoder_buffered_flush_behavior_test.go
@@ -5,7 +5,7 @@ import (
"bytes"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/network/protocol/pktline"
)
func TestEncoderBufferedFlushBehavior(t *testing.T) {
diff --git a/network/protocol/pktline/encoder_set_max_data_cannot_exceed_wire_limit_test.go b/network/protocol/pktline/encoder_set_max_data_cannot_exceed_wire_limit_test.go
index d73baa4f..b7291b06 100644
--- a/network/protocol/pktline/encoder_set_max_data_cannot_exceed_wire_limit_test.go
+++ b/network/protocol/pktline/encoder_set_max_data_cannot_exceed_wire_limit_test.go
@@ -6,7 +6,7 @@ import (
"errors"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/network/protocol/pktline"
)
func TestEncoderSetMaxDataCannotExceedWireLimit(t *testing.T) {
diff --git a/network/protocol/pktline/encoder_writes_frames_test.go b/network/protocol/pktline/encoder_writes_frames_test.go
index 1922b277..b4a8beb3 100644
--- a/network/protocol/pktline/encoder_writes_frames_test.go
+++ b/network/protocol/pktline/encoder_writes_frames_test.go
@@ -5,7 +5,7 @@ import (
"bytes"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/network/protocol/pktline"
)
func TestEncoderWritesFrames(t *testing.T) {
diff --git a/network/protocol/pktline/parse_length_header_test.go b/network/protocol/pktline/parse_length_header_test.go
index b1a4c1e5..a8d9dd6d 100644
--- a/network/protocol/pktline/parse_length_header_test.go
+++ b/network/protocol/pktline/parse_length_header_test.go
@@ -4,7 +4,7 @@ import (
"errors"
"testing"
- "codeberg.org/lindenii/furgit/network/protocol/pktline"
+ "lindenii.org/go/furgit/network/protocol/pktline"
)
func TestParseLengthHeader(t *testing.T) {