diff options
Diffstat (limited to 'network/protocol/sideband64k')
| -rw-r--r-- | network/protocol/sideband64k/chunk_writer.go | 2 | ||||
| -rw-r--r-- | network/protocol/sideband64k/encoder.go | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/network/protocol/sideband64k/chunk_writer.go b/network/protocol/sideband64k/chunk_writer.go index 9ee4e9f8..fb9d8060 100644 --- a/network/protocol/sideband64k/chunk_writer.go +++ b/network/protocol/sideband64k/chunk_writer.go @@ -12,6 +12,8 @@ type ChunkWriter struct { } // NewChunkWriter creates a chunking adapter over enc for one band. +// +// Labels: Deps-Borrowed. func NewChunkWriter(enc *Encoder, band Band) *ChunkWriter { return &ChunkWriter{enc: enc, band: band} } diff --git a/network/protocol/sideband64k/encoder.go b/network/protocol/sideband64k/encoder.go index 53ca7064..c29ad1bb 100644 --- a/network/protocol/sideband64k/encoder.go +++ b/network/protocol/sideband64k/encoder.go @@ -16,6 +16,8 @@ type Encoder struct { } // NewEncoder creates an encoder over w. +// +// Labels: Deps-Borrowed. func NewEncoder(w iowrap.WriteFlusher) *Encoder { return &Encoder{ enc: pktline.NewEncoder(w), |
