On Thu, 6 Jul 2006 14:08:29 -0400 (EDT) Dominique wrote:
DB> I found a workaround, based on the logs I found the
DB> function with the switch case for each col and no
DB> entries are generate for the missing entries. I add
DB> these lines before the default:
DB> 
DB>     case 12:
DB>             return MFD_SKIP;
DB> 
DB>     case 14:
DB>             return MFD_SKIP;
DB> 
DB>     case 15:
DB>             return MFD_SKIP;
DB> 
DB> and now the walk is fine. But why the mib2c doesn't
DB> generate these entries?

It should... This code should be the first few lines after each case:

        if (! (COLUMN_*_FLAG & rowreq_ctx->column_exists_flags)) {
            DEBUGMSGTL(("internal:${context}:_mfd_${context}_get_column",
                        "column %d ($node) doesn't exist\n", column));
            return MFD_SKIP;
        }

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Net-snmp-coders mailing list
Net-snmp-coders@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/net-snmp-coders

Reply via email to