On 14/06/07, Need Help <[EMAIL PROTECTED]> wrote:
>            for(req=requests; req; req = requests->next)

If you've got more than two varbind in the same request,
that will go into an infinite loop.
Try

    for (req=requests; req;  req=req->next)


Though I'm not convinced that you should be setting the same
exception on *all* the varbinds in the request.  There's no
guarantee that they all specify the same index, so it's perfectly
conceivable that some of these are valid, and others aren't.
    I would normally expect to consider each 'req' individually.

But maybe the MfD framework handles this differently.

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-coders mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/net-snmp-coders

Reply via email to