1package v2
2
3// AgentHandshakeType is the message type string for an AgentHandshake
4const AgentHandshakeType = "agent_handshake"
5
6// An AgentHandshake is the first message sent by a Backend on a Transport in a
7// Session.
8type AgentHandshake Entity
9
10// BackendHandshakeType is the message type string for a BackendHandshake
11const BackendHandshakeType = "backend_handshake"
12
13// A BackendHandshake is the first message sent by a Backend on a Transport in
14// a Session.
15type BackendHandshake struct{}
16
17// PaginationContinueHeader is the name of the header used by the API to return
18// a potential continue token when paginating.
19const PaginationContinueHeader = "Sensu-Continue"
20