Cross Reference: 055.15777182.tcp.patch
xref
: /
solaris-userland
/
components
/
net-snmp-57
/
patches
/
055.15777182.tcp.patch
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
4306
N/A
This patch fixes a issue related to retrieving
4306
N/A
the value of tcpOutRsts from tcpstat structure. The patch has
4306
N/A
been accepted by the community.
4306
N/A
4306
N/A
The details can be found in the following location
4306
N/A
https://sourceforge.net/p/net-snmp/bugs/2599/
4306
N/A
4306
N/A
---
a/agent/mibgroup/mibII/tcp.c
Wed Apr 1 02:40:40 2015
4306
N/A
+++
b/agent/mibgroup/mibII/tcp.c
Wed Apr 1 02:44:23 2015
4306
N/A
@@ -306,6 +306,9 @@
4306
N/A
ret_value =
tcpstat.tcpOutRsts
;
4306
N/A
break;
4306
N/A
}
4306
N/A
+#elif defined(solaris2)
4306
N/A
+ ret_value =
tcpstat.tcpOutRsts
;
4306
N/A
+ break;
4306
N/A
#endif /* linux */
4306
N/A
netsnmp_set_request_error(reqinfo, request, SNMP_NOSUCHOBJECT);
4306
N/A
continue;