ref: 0b2dcaabe23d45f6feb2273031854b14b512e3ff
dir: /network/protocol/pktline/constants.go/
package pktline const ( // DefaultPacketMax is a conservative packet size commonly used by // line-oriented protocol messages. DefaultPacketMax = 1000 // LargePacketMax is the maximum on-wire packet size including the // 4-byte hexadecimal length header. LargePacketMax = 65520 // LargePacketDataMax is the maximum payload size in one packet. LargePacketDataMax = LargePacketMax - 4 )