Uses of Class
org.opennms.protocols.snmp.SnmpPduPacket

Packages that use SnmpPduPacket
org.opennms.bb.dp.capsd.snmp   
org.opennms.bb.dp.trapd   
org.opennms.protocols.snmp   
org.opennms.test   
 

Uses of SnmpPduPacket in org.opennms.bb.dp.capsd.snmp
 

Methods in org.opennms.bb.dp.capsd.snmp with parameters of type SnmpPduPacket
 void IpAddrTable.snmpReceivedPdu(SnmpSession session, int command, SnmpPduPacket pdu)
          This method is used to process received SNMP PDU packets from the remote agent.
 void IpNetToMediaTable.snmpReceivedPdu(SnmpSession session, int command, SnmpPduPacket pdu)
          This method is used to process received SNMP PDU packets from the remote agent.
 void SystemGroup.snmpReceivedPdu(SnmpSession session, int command, SnmpPduPacket pdu)
          This method is used to process received SNMP PDU packets from the remote agent.
 void IfTable.snmpReceivedPdu(SnmpSession session, int command, SnmpPduPacket pdu)
          This method is used to process received SNMP PDU packets from the remote agent.
 void IpRouteTable.snmpReceivedPdu(SnmpSession session, int command, SnmpPduPacket pdu)
          This method is used to process received SNMP PDU packets from the remote agent.
 

Uses of SnmpPduPacket in org.opennms.bb.dp.trapd
 

Methods in org.opennms.bb.dp.trapd with parameters of type SnmpPduPacket
 void Trapd.snmpReceivedTrap(SnmpTrapSession session, InetAddress agent, int port, SnmpOctetString community, SnmpPduPacket pdu)
          Process the recieved SNMP v2c trap that was received by the underlying trap session.
 

Uses of SnmpPduPacket in org.opennms.protocols.snmp
 

Subclasses of SnmpPduPacket in org.opennms.protocols.snmp
 class SnmpPduBulk
          This class defines the SNMPv2 GetBulk request sent from the management platform to the agent.
 class SnmpPduRequest
          The SnmpPduRequest defines the SNMPv1 and SNMPv2 Protocol Data Unit (PDU) for certian message types.
 

Methods in org.opennms.protocols.snmp with parameters of type SnmpPduPacket
 void SnmpPacketHandler.processSnmpMessage(InetAddress agent, int port, SnmpInt32 version, SnmpOctetString community, int pduType, SnmpPduPacket pdu)
          This method is used to process received SNMP messages in the standard V1 & V2 format.
 void SnmpTrapSession.send(SnmpPeer peer, SnmpPduPacket pdu)
          Transmits the specified SnmpRequest to the SnmpPeer defined.
 void SnmpTrapSession.TrapHandler.processSnmpMessage(InetAddress agent, int port, SnmpInt32 version, SnmpOctetString community, int pduType, SnmpPduPacket pdu)
          Processes the default V1 & V2 messages.
 void SnmpTrapHandler.snmpReceivedTrap(SnmpTrapSession session, InetAddress agent, int port, SnmpOctetString community, SnmpPduPacket pdu)
          This method is defined to handle SNMPv2 traps that are received by the session.
private  SnmpSession.ByteArrayInfo SnmpSession.encode(SnmpPduPacket pdu)
          This method is used to encode the passed protocol data unit and return the encoding.
(package private)  SnmpRequest SnmpSession.findRequest(SnmpPduPacket pdu)
          Finds the first matching request in the list of outstanding request and returns it to the caller.
 int SnmpSession.send(SnmpPduPacket pdu, SnmpHandler handler)
          Send the SNMP PDU to the remote agent and invokes the specified handler when the packet is recieve.
 int SnmpSession.send(SnmpPduPacket pdu)
          Sends the SNMP PDU to the remote agent and uses the default SnmpHandler to process the request.
 void SnmpSession.SessionHandler.processSnmpMessage(InetAddress agent, int port, SnmpInt32 version, SnmpOctetString community, int pduType, SnmpPduPacket pdu)
           
 void SnmpHandler.snmpReceivedPdu(SnmpSession session, int command, SnmpPduPacket pdu)
          This method is invoked when a pdu is successfully returned from the peer agent.
 

Constructors in org.opennms.protocols.snmp with parameters of type SnmpPduPacket
SnmpPduPacket(SnmpPduPacket second)
          Class copy constructor.
SnmpRequest(SnmpSession session, SnmpPduPacket pdu, SnmpHandler handler)
          Used to create an SnmpRequest object.
 

Uses of SnmpPduPacket in org.opennms.test
 

Methods in org.opennms.test with parameters of type SnmpPduPacket
 void snmpwalk.snmpReceivedPdu(SnmpSession session, int cmd, SnmpPduPacket pdu)
          This method is defined by the SnmpHandler interface and invoked when the agent responds to the management application.
 void trapd.snmpReceivedTrap(SnmpTrapSession session, InetAddress agent, int port, SnmpOctetString community, SnmpPduPacket pdu)
          Receives and prints information about SNMPv2c traps.