shithub: furgit

ref: 94011e3762ca25b8ab3a9b9fe0d7a9e155381477
dir: /protocol/sideband64k/constants.go/

View raw version
package sideband64k

import "codeberg.org/lindenii/furgit/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
)