lwip-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lwip-users] SNMPSET value is ignored for integer fields


From: Jesus Alvarez
Subject: [lwip-users] SNMPSET value is ignored for integer fields
Date: Thu, 19 Feb 2009 00:31:30 -0400

The set_value function used to process SNMPSET requests with integer data
ignores the data value on the request and always uses a NULL value. This
only impacts custom MIBs since all integer fields on the base MIBs are
read-only.

The following change appears to correct this.

src/core/snmp/msg_in.c src/core/snmp/msg_in.c.old
594,595c594

+ en->set_value_a(request_id, &msg_ps->ext_object_def,
+ msg_ps->vb_ptr->value_len,msg_ps->vb_ptr->value);

- en->set_value_a(request_id, &msg_ps->ext_object_def, 0, NULL);

This was posted as bug #25636 on http://savannah.nongnu.org/bugs/?group=lwip






reply via email to

[Prev in Thread] Current Thread [Next in Thread]