enum

SNMP::V3::MessageFlags

Inherits Enum / Comparable / Value / Object

SNMPv3 message flags describing the features used

Constants

Authentication = 1

privacy without authentication is not allowed

Privacy = 2

encryption applied?

Reportable = 4

Report PDU must be returned to the sender under those conditions that can cause the generation of a Report PDU when the flag is zero, a Report PDU may not be sent. The reportableFlag is set to 1 by the sender in all messages containing a request (Get, Set) or an Inform, and set to 0 for messages containing a Response, a Trap, or a Report PDU It is used only in cases in which the PDU portion of the message cannot be decoded (for example, when decryption fails because of incorrect key)

None = 0
All = 7

Instance methods

authentication?

Returns true if this enum value contains Authentication

Source
none?
Source
privacy?

Returns true if this enum value contains Privacy

Source
reportable?

Returns true if this enum value contains Reportable

Source