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

📄 object_monitor.h

📁 net_snmp应用程序示例
💻 H
字号:
/************************************************************************** * object_monitor.h * * Contributed by: Robert Story <rstory@freesnmp.com> * * $Id: object_monitor.h,v 1.2 2002/07/18 17:56:17 rstory Exp $ * * functions and data structures for cooperating code to monitor objects. * * WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! * WARNING!                                                       WARNING! * WARNING!                                                       WARNING! * WARNING!         This code is under active development         WARNING! * WARNING!         and is subject to change at any time.         WARNING! * WARNING!                                                       WARNING! * WARNING!                                                       WARNING! * WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! */#ifndef OBJECT_MONITOR_H#define OBJECT_MONITOR_H#ifdef __cplusplusextern          "C" {#endif    /*     * notification types     */    enum {        /*         * cooperative notification from the object being watched         */        NOTIFICATION_COOPERATIVE = 1,        /*         * notification that an object has been set vi SNMP-SET         */        NOTIFICATION_SET_REQUEST,        /*         * end of current notification types         */        NOTIFICATION_END    };    /*     * COOPERATIVE event types     */    enum {        EVENT_ROW_ADD = 1,        EVENT_ROW_MOD,        EVENT_ROW_DEL,        EVENT_COL_MOD,        EVENT_OBJ_MOD,        EVENT_END    };    /*     * data structures     */    /*     * callback header     */    typedef struct netsnmp_monitor_callback_header_s {   /** callback type */        unsigned int    event;   /** registered oid */        netsnmp_index   monitored_object;   /** priority */        int             priority;   /** pointer given by watcher at registration */        void           *watcher_data;   /** pointer passed from the monitored object */        void           *object_info;   /** DO NOT USE, INTERNAL USE ONLY */        struct netsnmp_monitor_callback_header_s *private;        int             refs;    } netsnmp_monitor_callback_header;    /*     *     */    typedef struct netsnmp_monitor_callback_set_request_s {    /** header */        netsnmp_monitor_callback_header hdr;    /** handler that registered to handle this object */        netsnmp_mib_handler *handler;    /** pdu containing the set request */        netsnmp_pdu    *pdu;    /** the set request */        netsnmp_request_info *request;    } netsnmp_monitor_set_request_data;    /*     *     */    typedef struct netsnmp_monitor_callback_cooperative_s {   /** header */        netsnmp_monitor_callback_header hdr;    } netsnmp_monitor_callback_cooperative;    typedef void           (netsnmp_object_monitor_callback) (netsnmp_monitor_callback_header                                           *);    /**********************************************************************     * Registration function prototypes     */    /*     * Register a callback for the specified object.     */    int             netsnmp_monitor_register(oid * object, size_t oid_len,                                             int priority,                                             unsigned int events,                                             void *watcher_data,                                             netsnmp_object_monitor_callback                                             * cb);    /*     * Unregister a callback for the specified object.     */    int             netsnmp_monitor_unregister(oid * object,                                               size_t oid_len,                                               int priority,                                               void *watcher_data,                                               netsnmp_object_monitor_callback                                               * cb);    /*     * check to see if a registration exists for an object/event combination     */    int             netsnmp_monitor_check_registered(int event, oid * oid,                                                     int oid_len);    /**********************************************************************     * function prototypes     */    /*     * Notifies the object monitor of an event.     */    void            netsnmp_notify_monitor(netsnmp_monitor_callback_header                                           * cbh);    /**********************************************************************     * function prototypes     */    /*     * Notifies the object monitor of a cooperative event.     */    void            netsnmp_notify_cooperative(int event, oid * object,                                               size_t len, char oid_steal,                                               void *object_info);#ifdef __cplusplus}#endif#endif /** OBJECT_MONITOR_H */

⌨️ 快捷键说明

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