1package consts
2
3const (
4	// ExpirationRestoreWorkerCount specifies the number of workers to use while
5	// restoring leases into the expiration manager
6	ExpirationRestoreWorkerCount = 64
7
8	// NamespaceHeaderName is the header set to specify which namespace the
9	// request is indented for.
10	NamespaceHeaderName = "X-Vault-Namespace"
11
12	// AuthHeaderName is the name of the header containing the token.
13	AuthHeaderName = "X-Vault-Token"
14
15	// PerformanceReplicationALPN is the negotiated protocol used for
16	// performance replication.
17	PerformanceReplicationALPN = "replication_v1"
18
19	// DRReplicationALPN is the negotiated protocol used for
20	// dr replication.
21	DRReplicationALPN = "replication_dr_v1"
22
23	PerfStandbyALPN = "perf_standby_v1"
24
25	RequestForwardingALPN = "req_fw_sb-act_v1"
26
27	RaftStorageALPN = "raft_storage_v1"
28)
29