2
0
mirror of https://github.com/status-im/consul.git synced 2025-02-19 09:07:59 +00:00

16 lines
331 B
Go
Raw Normal View History

package pool
type RPCType byte
const (
// keep numbers unique.
// iota depends on order
RPCConsul RPCType = 0
RPCRaft = 1
RPCMultiplex = 2 // Old Muxado byte, no longer supported.
RPCTLS = 3
RPCMultiplexV2 = 4
RPCSnapshot = 5
RPCGossip = 6
)