Dangerous SNMP
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Pages
rawresponse.hpp
1 #pragma once
2 
3 #include "securitymodel.hpp"
4 #include "pdu.hpp"
5 
6 namespace dangerous { namespace snmp {
7 
12 class RawResponse {
13 public:
17  RawResponse();
18 
19 public:
22  std::unique_ptr<SecurityModel> securityModel;
23 
25  uint8_t pduType;
26 
29 };
30 
31 } }
32 
A PDU represents an SNMP Protocol Data Unit (PDU).
Definition: pdu.hpp:56
std::unique_ptr< SecurityModel > securityModel
This contains SecurityModel-specific information about the agent.
Definition: rawresponse.hpp:22
This represents the the response that is returned from an SNMP agent in response to some request that...
Definition: rawresponse.hpp:12
uint8_t pduType
This is the kind of PDU. TODO TODO TODO.
Definition: rawresponse.hpp:25
PDU pdu
This is the PDU.
Definition: rawresponse.hpp:28