message-size-increase #3

Merged
sashakoshka merged 227 commits from message-size-increase into main 2025-09-07 19:27:38 -06:00
Showing only changes of commit 7a0bf64c17 - Show all commits

View File

@ -2,6 +2,7 @@ package hopp
import "io" import "io"
import "net" import "net"
import "bytes"
import "errors" import "errors"
import "context" import "context"
import "git.tebibyte.media/sashakoshka/hopp/tape" import "git.tebibyte.media/sashakoshka/hopp/tape"
@ -58,9 +59,10 @@ func (this *b) newTrans(underlying Stream) *transB {
} }
type transB struct { type transB struct {
sizeLimit int64 sizeLimit int64
underlying Stream underlying Stream
currentData io.Reader currentData io.Reader
currentWriter *writerB
} }
func (this *transB) Close() error { func (this *transB) Close() error {