Files
rippled/include/xrpl/resource/detail/Kind.h
2026-05-06 14:13:59 +01:00

16 lines
435 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 Kind { kindInbound, kindOutbound, kindUnlimited };
} // namespace xrpl::Resource