Module: SNMP::Open::Parser::Static

Includes:
Constants
Defined in:
lib/snmp/open/parser.rb

Overview

static messages from net-snmp commands

Constant Summary collapse

MESSAGES =
[
  NOSUCHOBJECT_STR,
  NOSUCHINSTANCE_STR,
  NOMOREVARIABLES_STR
].freeze
ANY_MESSAGE =
Regexp.union(*MESSAGES)
QUOTED_MESSAGES =
MESSAGES.map { |v| [v, %("#{v}")] }.to_h.freeze

Constants included from Constants

Constants::NOMOREVARIABLES_STR, Constants::NOSUCHINSTANCE_STR, Constants::NOSUCHOBJECT_STR