mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-04 09:16:47 +00:00
16 lines
429 B
C++
16 lines
429 B
C++
#pragma once
|
|
|
|
namespace xrpl::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 class Kind { Inbound, Outbound, Unlimited };
|
|
|
|
} // namespace xrpl::Resource
|