On 14 March 2012 22:14, Francois Bouchard <[email protected]> wrote: > what is the way to access any time a table - or a row - data through > netsnmp_request_info *request; > or > netsnmp_table_request_info *table_info or another structure, and not > necessarily inside the handler routine ?
netsnmp_request_info (and netsnmp_table_request_info) explicitly refer to a particular incoming request. Hence they are only valid while processing that request - which effectively means within the request handling routine (i.e. the handler). Outside of this routine, it doesn't really make sense to refer to a request-related structure. Dave ------------------------------------------------------------------------------ This SF email is sponsosred by: Try Windows Azure free for 90 days Click Here http://p.sf.net/sfu/sfd2d-msazure _______________________________________________ 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
