ref: 9e44418ce9d88f4159067b1ce2c808cb93e29c38
dir: /format/sideband64k/constants.go/
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 )