blob: 2a6a2e47ce724febea06e7efede2b97c59372d26 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
package sideband64k
import "codeberg.org/lindenii/furgit/network/protocol/pktline"
const (
// PacketMax is the maximum on-wire pkt-line size used by side-band-64k.
PacketMax = pktline.LargePacketMax
// DataMax is the maximum sideband payload size excluding the 1-byte band designator.
DataMax = pktline.LargePacketDataMax - 1
)
|