Quoting [EMAIL PROTECTED]:

> I've found that I can get any ONE value (the first I request) back by
> reordering how I add variables to the PDU.  By putting snmp_log() calls in my
> MIB handling code, I find that snmpd asks my MIB code for all the values that
> my client asks snmpd for.

It's probably worth checking the handler routine that implements
this particular area, to ensure that it's processing the whole of
the 'requests' list - not just the first entry.
   The code for handling a particular MIB object should invariably
be wrapped within a

    for ( request = requests; request; request=request->next_variable)

loop (and with with 'request' not 'requests' internally).

That's the most likely cause that springs to mind immediately.

Dave

----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.


-------------------------------------------------------
This SF.Net email is sponsored by the new InstallShield X.
>From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
_______________________________________________
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

Reply via email to