4306N/AThis patch fixes a issue related to retrieving
4306N/Athe value of tcpOutRsts from tcpstat structure. The patch has
4306N/Abeen accepted by the community.
4306N/A
4306N/AThe details can be found in the following location
4306N/Ahttps://sourceforge.net/p/net-snmp/bugs/2599/
4306N/A
4306N/A--- a/agent/mibgroup/mibII/tcp.c Wed Apr 1 02:40:40 2015
4306N/A+++ b/agent/mibgroup/mibII/tcp.c Wed Apr 1 02:44:23 2015
4306N/A@@ -306,6 +306,9 @@
4306N/A ret_value = tcpstat.tcpOutRsts;
4306N/A break;
4306N/A }
4306N/A+#elif defined(solaris2)
4306N/A+ ret_value = tcpstat.tcpOutRsts;
4306N/A+ break;
4306N/A #endif /* linux */
4306N/A netsnmp_set_request_error(reqinfo, request, SNMP_NOSUCHOBJECT);
4306N/A continue;