Class Stack.ConnectionLimits
java.lang.Object
org.eclipse.milo.opcua.stack.core.Stack.ConnectionLimits
- Enclosing class:
- Stack
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic intDeadline, in milliseconds, that UA Hello message must be received within before the channel is closed.static booleanAllows rate limiting to be disabled stack-wide.static intMaximum number of connect attempts perRATE_LIMIT_WINDOW_MS.static intThe maximum number of connections allowed in total (any remote address, not including localhost).static intThe maximum number of connections allowed from any 1 remote address.static intThe window of time over which connect attempts will be counted for rate limiting. -
Method Summary
-
Field Details
-
HELLO_DEADLINE_MS
public static volatile int HELLO_DEADLINE_MSDeadline, in milliseconds, that UA Hello message must be received within before the channel is closed. -
RATE_LIMIT_ENABLED
public static boolean RATE_LIMIT_ENABLEDAllows rate limiting to be disabled stack-wide. -
RATE_LIMIT_MAX_ATTEMPTS
public static int RATE_LIMIT_MAX_ATTEMPTSMaximum number of connect attempts perRATE_LIMIT_WINDOW_MS. -
RATE_LIMIT_WINDOW_MS
public static int RATE_LIMIT_WINDOW_MSThe window of time over which connect attempts will be counted for rate limiting. -
RATE_LIMIT_MAX_CONNECTIONS
public static int RATE_LIMIT_MAX_CONNECTIONSThe maximum number of connections allowed in total (any remote address, not including localhost). -
RATE_LIMIT_MAX_CONNECTIONS_PER_ADDRESS
public static int RATE_LIMIT_MAX_CONNECTIONS_PER_ADDRESSThe maximum number of connections allowed from any 1 remote address.
-