⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 requestpduevent.java

📁 无线网络管理
💻 JAVA
字号:
// NAME//      $RCSfile: RequestPduEvent.java,v $// DESCRIPTION//      [given below in javadoc format]// DELTA//      $Revision: 1.5 $// CREATED//      $Date: 2006/02/09 14:30:18 $// COPYRIGHT//      Westhawk Ltd// TO DO///* * Copyright (C) 2005 - 2006 by Westhawk Ltd * <a href="www.westhawk.co.uk">www.westhawk.co.uk</a> * * Permission to use, copy, modify, and distribute this software * for any purpose and without fee is hereby granted, provided * that the above copyright notices appear in all copies and that * both the copyright notice and this permission notice appear in * supporting documentation. * This software is provided "as is" without express or implied * warranty. * author <a href="mailto:snmp@westhawk.co.uk">Tim Panton</a> */package uk.co.westhawk.snmp.event;import uk.co.westhawk.snmp.stack.*;/** * The RequestPduEvent class. This class is delivered when a pdu is received. * * <p> * RequestPduEvents are fired in case of a GetRequest, SetRequest, * GetNextRequest, GetBulkRequest (SNMPv2c, SNMPv3), Inform  * (SNMPv2c, SNMPv3) PDU that could be decoded and matched by one  * of the SnmpContext classes. * </p> * * @since 4_14 * @author <a href="mailto:snmp@westhawk.co.uk">Birgit Arkesteijn</a> * @version $Revision: 1.5 $ $Date: 2006/02/09 14:30:18 $ */public class RequestPduEvent extends DecodedPduEvent{    private static final String     version_id =        "@(#)$Id: RequestPduEvent.java,v 1.5 2006/02/09 14:30:18 birgit Exp $ Copyright Westhawk Ltd";/**  * The constructor for a decoded request pdu event. The SnmpContext * classes will fire decoded request pdu events. * * @param source The source (SnmpContext) of the event * @param pdu The pdu * @param port The remote port number of the host where the pdu came from * */public RequestPduEvent(Object source, Pdu pdu, int port) {    super(source, pdu, port);}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -