|
From: Dave S. <D.T...@li...> - 2012-03-14 23:58:35
|
On 14 March 2012 22:14, Francois Bouchard <fra...@mp...> 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 |