mirror of
https://github.com/status-im/consul.git
synced 2025-01-11 06:16:08 +00:00
5531678e9e
* Mitigate HTTP/RPC Services Allow Unbounded Resource Usage Fixes #7159. Co-authored-by: Matt Keeler <mkeeler@users.noreply.github.com> Co-authored-by: Paul Banks <banks@banksco.de>
14 lines
325 B
Go
14 lines
325 B
Go
package objx
|
|
|
|
const (
|
|
// PathSeparator is the character used to separate the elements
|
|
// of the keypath.
|
|
//
|
|
// For example, `location.address.city`
|
|
PathSeparator string = "."
|
|
|
|
// SignatureSeparator is the character that is used to
|
|
// separate the Base64 string from the security signature.
|
|
SignatureSeparator = "_"
|
|
)
|