/usr/share/snmp/mib2c-data/generic-table-indexes-to-oid.m2i is in libsnmp-base 5.4.3~dfsg-2.8+deb7u1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | ############################################################# -*- c -*-
## generic include for XXX. Do not use directly.
##
## $Id: generic-table-indexes-to-oid.m2i 12019 2005-03-22 22:27:57Z rstory $
########################################################################
@if $m2c_mark_boundary == 1@
/** START code generated by $RCSfile$ $Revision: 12019 $ */
@end@
########################################################################
##
/**
* @internal
* convert the index component stored in the context to an oid
*/
int
${context}_index_to_oid(netsnmp_index *oid_idx,
${context}_mib_index *mib_idx)
{
@include generic-table-indexes-varbind-setup.m2i@
DEBUGMSGTL(("verbose:${context}:${context}_index_to_oid","called\n"));
@ foreach $node index@
@ include m2c_setup_node.m2i@
/* $m2c_node_summary */
@ if $m2c_node_needlength == 1@
snmp_set_var_value(&var_$node, (u_char*)&mib_idx->$node,
mib_idx->${node}_len * sizeof(mib_idx->${node}[0]));
@ else@
snmp_set_var_value(&var_$node, (u_char*)&mib_idx->$node,
sizeof(mib_idx->$node));
@ end@
@ end@ # for each column
err = build_oid_noalloc(oid_idx->oids, oid_idx->len, &oid_idx->len,
NULL, 0, &var_$m2c_dii_first);
if(err)
snmp_log(LOG_ERR,"error %d converting index to oid\n", err);
/*
* parsing may have allocated memory. free it.
*/
snmp_reset_var_buffers( &var_$m2c_dii_first );
return err;
} /* ${context}_index_to_oid */
##
########################################################################
@if $m2c_mark_boundary == 1@
/** END code generated by $RCSfile$ $Revision: 12019 $ */
@end@
|