shithub: furgit

ref: fb9eb058f1c9b7cb26f33bbe679a85f530566641
dir: /network/protocol/sideband64k/constants.go/

View raw version
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
)