agent/lib/const.go

13 lines
240 B
Go

package lib
const (
GRPCMaxRecvMsgSize = 10 * 1024 * 1024
GRPCMaxSendMsgSize = 10 * 1024 * 1024
INDIServerMaxRecvMsgSize = 49152
INDIServerMaxSendMsgSize = 2048
ModeSolo = "solo"
ModeShare = "share"
ModeRobotic = "robotic"
)