blob: 400777616b629415293cc2bb946e2f9811cfd79c (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
package sideband64k
import "codeberg.org/lindenii/furgit/format/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
)
|