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