enum

KNX::ConnectionError

Inherits Enum < Comparable < Value < Object

Constants

NoError = 0_u8

The connection state is normal.

HostProtocolIssue = 1_u8

requested host protocol is not supported

VersionNotSupported = 2_u8

requested protocol version is not supported

SequenceNumber = 3_u8

received sequence number is out of order.

ConnectionID = 33_u8

cannot find an active data connection with the specified ID.

ConnectionType = 34_u8

The requested connection type is not supported

ConnectionOption = 35_u8

One or more requested connection options are not supported

NoMoreConnections = 36_u8

maximum amount of concurrent connections is already occupied.

NoMoreUniqueConnections = 37_u8

Individual Address is used multiple times

DataConnection = 38_u8

error concerning the data connection with the specified ID.

SubnetworkIssue = 39_u8

error concerning the KNX subnetwork connection with the specified ID.

TunnellingLayer = 41_u8

requested tunnelling layer is not supported

Instance methods

connection_id?

Returns true if this enum value equals ConnectionID

Source
connection_option?

Returns true if this enum value equals ConnectionOption

Source
connection_type?

Returns true if this enum value equals ConnectionType

Source
data_connection?

Returns true if this enum value equals DataConnection

Source
host_protocol_issue?

Returns true if this enum value equals HostProtocolIssue

Source
no_error?

Returns true if this enum value equals NoError

Source
no_more_connections?

Returns true if this enum value equals NoMoreConnections

Source
no_more_unique_connections?

Returns true if this enum value equals NoMoreUniqueConnections

Source
sequence_number?

Returns true if this enum value equals SequenceNumber

Source
subnetwork_issue?

Returns true if this enum value equals SubnetworkIssue

Source
tunnelling_layer?

Returns true if this enum value equals TunnellingLayer

Source
version_not_supported?

Returns true if this enum value equals VersionNotSupported

Source