Package org.snmp4j.agent.agentx

Examples of org.snmp4j.agent.agentx.AgentXVariableBindingPDU


                new DefaultMOContextScope(getContext(), ranges[i]), i);
        addSubRequest(subReq);
      }
    }
    else if (requestEvent.getCommand() instanceof AgentXVariableBindingPDU) {
      AgentXVariableBindingPDU vbRequest =
          (AgentXVariableBindingPDU)requestEvent.getCommand();
      VariableBinding[] vbs = vbRequest.getVariableBindings();
      for (int i = 0; i < vbs.length; i++) {
        AgentXSubRequest subReq = new AgentXSubRequest(vbs[i], i);
        addSubRequest(subReq);
      }
    }
View Full Code Here

TOP

Related Classes of org.snmp4j.agent.agentx.AgentXVariableBindingPDU

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.