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

📄 ifxtable_interface.c

📁 snmp的源代码,已经在我的ubuntu下编译通过
💻 C
📖 第 1 页 / 共 4 页
字号:
/* * Note: this file originally auto-generated by mib2c using *       version : 1.42 $ of : mfd-interface.m2c,v $  * * $Id: ifXTable_interface.c,v 1.11.2.1 2004/12/10 18:01:33 rstory Exp $ *//* * ********************************************************************* * ********************************************************************* * ********************************************************************* * ***                                                               *** * ***  NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE  *** * ***                                                               *** * ***                                                               *** * ***       THIS FILE DOES NOT CONTAIN ANY USER EDITABLE CODE.      *** * ***                                                               *** * ***                                                               *** * ***       THE GENERATED CODE IS INTERNAL IMPLEMENTATION, AND      *** * ***                                                               *** * ***                                                               *** * ***    IS SUBJECT TO CHANGE WITHOUT WARNING IN FUTURE RELEASES.   *** * ***                                                               *** * ***                                                               *** * ********************************************************************* * ********************************************************************* * ********************************************************************* *//* * standard Net-SNMP includes  */#include <net-snmp/net-snmp-config.h>#include <net-snmp/net-snmp-includes.h>#include <net-snmp/agent/net-snmp-agent-includes.h>/* * include our parent header  */#include "ifXTable.h"#include <net-snmp/library/container.h>#include "ifXTable_interface.h"#include "if-mib/ifTable/ifTable_interface.h"/********************************************************************** ********************************************************************** *** *** Table ifXTable *** ********************************************************************** **********************************************************************//* * ifXTable is subid 1 of ifMIBObjects. * Its status is Current. * OID: .1.3.6.1.2.1.31.1.1, length: 9 */typedef struct ifXTable_interface_ctx_s {    netsnmp_container *container;    netsnmp_cache  *cache;      /* optional cache */    ifXTable_registration_ptr user_ctx;    netsnmp_table_registration_info tbl_info;    netsnmp_baby_steps_access_methods access_multiplexer;} ifXTable_interface_ctx;static ifXTable_interface_ctx ifXTable_if_ctx;static void     _ifXTable_container_init(ifXTable_interface_ctx * if_ctx);static Netsnmp_Node_Handler _mfd_ifXTable_pre_request;static Netsnmp_Node_Handler _mfd_ifXTable_post_request;static Netsnmp_Node_Handler _mfd_ifXTable_object_lookup;static Netsnmp_Node_Handler _mfd_ifXTable_get_values;static Netsnmp_Node_Handler _mfd_ifXTable_check_objects;static Netsnmp_Node_Handler _mfd_ifXTable_undo_setup;static Netsnmp_Node_Handler _mfd_ifXTable_set_values;static Netsnmp_Node_Handler _mfd_ifXTable_undo_cleanup;static Netsnmp_Node_Handler _mfd_ifXTable_undo_values;static Netsnmp_Node_Handler _mfd_ifXTable_commit;static Netsnmp_Node_Handler _mfd_ifXTable_undo_commit;static Netsnmp_Node_Handler _mfd_ifXTable_check_dependencies;NETSNMP_STATIC_INLINE int _ifXTable_undo_column(ifXTable_rowreq_ctx *                                                rowreq_ctx,                                                netsnmp_variable_list *                                                var, int column);ifXTable_data  *ifXTable_allocate_data(void);/** * @internal * Initialize the table ifXTable  *    (Define its contents and how it's structured) */void_ifXTable_initialize_interface(ifXTable_registration_ptr reg_ptr,                               u_long flags){    netsnmp_baby_steps_access_methods *access_multiplexer =        &ifXTable_if_ctx.access_multiplexer;    netsnmp_table_registration_info *tbl_info = &ifXTable_if_ctx.tbl_info;    netsnmp_handler_registration *reginfo;    netsnmp_mib_handler *handler;    int             mfd_modes = 0;    DEBUGMSGTL(("internal:ifXTable:_ifXTable_initialize_interface",                "called\n"));    /*     * make sure the ifTable container has been initialized, since     * we use its container, and we can't guarantee that it has     * already been initialized.     */    (void)if_mib_container_init();    /*************************************************     *     * save interface context for ifXTable     */    /*     * Setting up the table's definition     */    netsnmp_table_helper_add_indexes(tbl_info, ASN_INTEGER,                                               /** index: ifIndex */                                     0);    /*     * Define the minimum and maximum accessible columns.  This     * optimizes retrival.      */    tbl_info->min_column = IFXTABLE_MIN_COL;    tbl_info->max_column = IFXTABLE_MAX_COL;    /*     * save users context     */    ifXTable_if_ctx.user_ctx = reg_ptr;    /*     * call data access initialization code     */    ifXTable_init_data(reg_ptr);    /*     * set up the container     */    _ifXTable_container_init(&ifXTable_if_ctx);    if (NULL == ifXTable_if_ctx.container)        return; /* msg already logged */    /*     * access_multiplexer: REQUIRED wrapper for get request handling     */    access_multiplexer->object_lookup = _mfd_ifXTable_object_lookup;    access_multiplexer->get_values = _mfd_ifXTable_get_values;    /*     * no wrappers yet     */    access_multiplexer->pre_request = _mfd_ifXTable_pre_request;    access_multiplexer->post_request = _mfd_ifXTable_post_request;    /*     * REQUIRED wrappers for set request handling     */    access_multiplexer->object_syntax_checks = _mfd_ifXTable_check_objects;    access_multiplexer->undo_setup = _mfd_ifXTable_undo_setup;    access_multiplexer->undo_cleanup = _mfd_ifXTable_undo_cleanup;    access_multiplexer->set_values = _mfd_ifXTable_set_values;    access_multiplexer->undo_sets = _mfd_ifXTable_undo_values;    /*     * no wrappers yet     */    access_multiplexer->commit = _mfd_ifXTable_commit;    access_multiplexer->undo_commit = _mfd_ifXTable_undo_commit;    /*     * REQUIRED for tables with dependencies     */    access_multiplexer->consistency_checks =        _mfd_ifXTable_check_dependencies;    /*************************************************     *     * Create a registration, save our reg data, register table.     */    DEBUGMSGTL(("ifXTable:init_ifXTable",                "Registering ifXTable as a mibs-for-dummies table.\n"));    handler =        netsnmp_baby_steps_access_multiplexer_get(access_multiplexer);    reginfo =        netsnmp_handler_registration_create("ifXTable", handler,                                            ifXTable_oid,                                            ifXTable_oid_size,                                            HANDLER_CAN_BABY_STEP |                                            HANDLER_CAN_RWRITE);    if (NULL == reginfo) {        snmp_log(LOG_ERR, "error registering table ifXTable\n");        return;    }    reginfo->my_reg_void = &ifXTable_if_ctx;    /*************************************************     *     * set up baby steps handler, create it and inject it     */    if (access_multiplexer->object_lookup)        mfd_modes |= BABY_STEP_OBJECT_LOOKUP;    if (access_multiplexer->set_values)        mfd_modes |= BABY_STEP_SET_VALUES;    if (access_multiplexer->irreversible_commit)        mfd_modes |= BABY_STEP_IRREVERSIBLE_COMMIT;    if (access_multiplexer->object_syntax_checks)        mfd_modes |= BABY_STEP_CHECK_OBJECT;    if (access_multiplexer->pre_request)        mfd_modes |= BABY_STEP_PRE_REQUEST;    if (access_multiplexer->post_request)        mfd_modes |= BABY_STEP_POST_REQUEST;    if (access_multiplexer->undo_setup)        mfd_modes |= BABY_STEP_UNDO_SETUP;    if (access_multiplexer->undo_cleanup)        mfd_modes |= BABY_STEP_UNDO_CLEANUP;    if (access_multiplexer->undo_sets)        mfd_modes |= BABY_STEP_UNDO_SETS;    if (access_multiplexer->row_creation)        mfd_modes |= BABY_STEP_ROW_CREATE;    if (access_multiplexer->consistency_checks)        mfd_modes |= BABY_STEP_CHECK_CONSISTENCY;    if (access_multiplexer->commit)        mfd_modes |= BABY_STEP_COMMIT;    if (access_multiplexer->undo_commit)        mfd_modes |= BABY_STEP_UNDO_COMMIT;    handler = netsnmp_baby_steps_handler_get(mfd_modes);    netsnmp_inject_handler(reginfo, handler);    /*************************************************     *     * inject row_merge helper with prefix rootoid_len + 2 (entry.col)     */    handler = netsnmp_get_row_merge_handler(reginfo->rootoid_len + 2);    netsnmp_inject_handler(reginfo, handler);    /*************************************************     *     * inject container_table helper     */    handler =        netsnmp_container_table_handler_get(tbl_info,                                            ifXTable_if_ctx.container,                                            TABLE_CONTAINER_KEY_NETSNMP_INDEX);    netsnmp_inject_handler(reginfo, handler);    /*************************************************     *     * inject cache helper     */    if (NULL != ifXTable_if_ctx.cache) {        handler = netsnmp_cache_handler_get(ifXTable_if_ctx.cache);        netsnmp_inject_handler(reginfo, handler);    }    /*     * register table     */    netsnmp_register_table(reginfo, tbl_info);}                               /* _ifXTable_initialize_interface */voidifXTable_valid_columns_set(netsnmp_column_info *vc){    ifXTable_if_ctx.tbl_info.valid_columns = vc;}                               /* ifXTable_valid_columns_set *//** * @internal * convert the index component stored in the context to an oid */intifXTable_index_to_oid(netsnmp_index * oid_idx,                      ifXTable_mib_index * mib_idx){    int             err = SNMP_ERR_NOERROR;    /*     * temp storage for parsing indexes     */    /*     * ifIndex(1)/InterfaceIndex/ASN_INTEGER/long(long)//l/A/w/e/R/d/H     */    netsnmp_variable_list var_ifIndex;    /*     * set up varbinds     */    memset(&var_ifIndex, 0x00, sizeof(var_ifIndex));    var_ifIndex.type = ASN_INTEGER;    /*     * chain temp index varbinds together     */    var_ifIndex.next_variable = NULL;    DEBUGMSGTL(("verbose:ifXTable:ifXTable_index_to_oid", "called\n"));    /*     * ifIndex(1)/InterfaceIndex/ASN_INTEGER/long(long)//l/A/w/e/R/d/H      */    snmp_set_var_value(&var_ifIndex, (u_char *) & mib_idx->ifIndex,                       sizeof(mib_idx->ifIndex));    err = build_oid_noalloc(oid_idx->oids, oid_idx->len, &oid_idx->len,                            NULL, 0, &var_ifIndex);    if (err)        snmp_log(LOG_ERR, "error %d converting index to oid\n");    /*     * parsing may have allocated memory. free it.     */    snmp_reset_var_buffers(&var_ifIndex);    return err;}                               /* ifXTable_index_to_oid *//** * extract ifXTable indexes from a netsnmp_index * * @retval SNMP_ERR_NOERROR  : no error * @retval SNMP_ERR_GENERR   : error */intifXTable_index_from_oid(netsnmp_index * oid_idx,                        ifXTable_mib_index * mib_idx){    int             err = SNMP_ERR_NOERROR;    /*     * temp storage for parsing indexes     */    /*     * ifIndex(1)/InterfaceIndex/ASN_INTEGER/long(long)//l/A/w/e/R/d/H     */    netsnmp_variable_list var_ifIndex;    /*     * set up varbinds     */    memset(&var_ifIndex, 0x00, sizeof(var_ifIndex));    var_ifIndex.type = ASN_INTEGER;    /*     * chain temp index varbinds together     */    var_ifIndex.next_variable = NULL;

⌨️ 快捷键说明

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