mirror of
https://github.com/vale981/agent
synced 2025-03-04 17:11:40 -05:00
13 lines
240 B
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"
|
|
)
|