Re: Problem in triggering callback function when a response is received

2011-11-12 Thread Niels Baggesen
Den 12-11-2011 13:58, [email protected] skrev: > So I filled the callback variable as > > session.callback = response_callback; > session.callback_magic = session_handle; > > And after filling the data I will send like this. > > snmp_send(session_handle, my_pdu); > snmp_free_pdu(my_pdu); > >

Problem in triggering callback function when a response is received

2011-11-12 Thread basil.joseph
Hi, First of all thanks for answering my previous query on "redirecting debug info to a separate file". This time I have a query on a strange behaviour of my application. I am using SNMPv3 and using a callback to receive the response, so that it will not act as a blocking call. So I fille