How to implement tables or sequence of objects

2008-03-05 Thread Vishal Nandanwar
Hi, How to implement tables (or sequence of objects). is there any kind of help document available? Vishal N - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http

Re: How to implement tables

2008-01-07 Thread Xuan Pan
Thanks Dave for being so helpful. I have got a working agent that can respond to queries on both Scalars and Tables. I chose iterator helper mainly because my data is stored externally. Then I realized I still need to copy the table data into a linked list locally into the memory so that the intera

Re: How to implement tables

2008-01-03 Thread Dave Shield
On 02/01/2008, Xuan Pan <[EMAIL PROTECTED]> wrote: > 2. I am using table_iterator to implement it by referencing the example > code of vacm_context.c. Am I choosing the right handler? It's impossible to answer that question. The iterator helper is a perfectly reasonable choice for implementing a t

How to implement tables

2008-01-02 Thread Xuan Pan
Hi, I have been reading examples code and questions from others about how to implement tables but I still have some troubles. Thanks for helping me out on any of them: [Scenario] My table data is some configurations for example a DHCP pool. It consists of information like pool names, DHCP server

Re: table, how to implement tables external storage *not* using table_iterator

2006-08-01 Thread Dave Shield
[ First - *please* don't mail me privately, without copying any responses to the mailing list. I don't have the time or inclination to offer private, unpaid, SNMP consultancy. Keep discussions to the list, where others can both learn and offer advice. Thanks. ] On 01/08

Re: table, how to implement tables external storage *not* using table_iterator

2006-08-01 Thread Dave Shield
On 31/07/06, Martin Pasdzierny <[EMAIL PROTECTED]> wrote: > we need to propagate table based data stored *external* to netsnmp. > What we need is a *working* example outlining (=using) one of the table > interfaces allowing *external* data storage and allowing real *efficient* > access > (like a

table, how to implement tables external storage *not* using table_iterator

2006-07-31 Thread Martin Pasdzierny
Hi Net-Snmp-Gurus ! we need to propagate table based data stored *external* to netsnmp. We started using the table_iterator, and it works fine except that it is slow for real large tables. We found lots of hints about generic table helpers etc. in the docs. But nothing like a *complete* example