On 25/04/07, Reza Salehi <[EMAIL PROTECTED]> wrote: > netsnmp_table_set_multi_add_default_row(table_set, > COLUMN_DOT3CITINDEX, 0, NULL, 0, > COLUMN_DOT3CITCHANNELNUMBER, ASN_INTEGER, 0, NULL, 0, > COLUMN_DOT3CITDATARATE, ASN_INTEGER, 0, NULL, 0, > COLUMN_DOT3CITTXPOWER, ASN_INTEGER, 0, NULL, 0, > 0);
The first object in this list (DOT3CITINDEX) doesn't specify the type. The default row handling takes the '0' as the type (which is invalid). That also throws all the following parameters off. Try > netsnmp_table_set_multi_add_default_row(table_set, > COLUMN_DOT3CITINDEX, ASN_INTEGER, 0, NULL, 0, > .... instead. Dave ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ Net-snmp-users mailing list [email protected] Please see the following page to unsubscribe or change other options: https://lists.sourceforge.net/lists/listinfo/net-snmp-users
