mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
18 lines
461 B
C++
18 lines
461 B
C++
#pragma once
|
|
|
|
namespace xrpl {
|
|
namespace Resource {
|
|
|
|
/**
|
|
* Kind of consumer.
|
|
* kindInbound: Inbound connection.
|
|
* kindOutbound: Outbound connection.
|
|
* kindUnlimited: Inbound connection with no resource limits, but could be
|
|
* subjected to administrative restrictions, such as
|
|
* use of some RPC commands like "stop".
|
|
*/
|
|
enum Kind { kindInbound, kindOutbound, kindUnlimited };
|
|
|
|
} // namespace Resource
|
|
} // namespace xrpl
|