5f06ecf5e1
- Fixed (security) [APP-70]: Memory leak in MibLeaf::set if same OID is set
twice in the same PDU.
- Fix the following build failure raised since bump of snmppp to version
3.5.0 in commit e011fa0415
:
snmp_pp_ext.cpp: In member function 'int Agentpp::Snmpx::send(const Agentpp::Pdux&, Snmp_pp::SnmpTarget*)':
snmp_pp_ext.cpp:1172:47: error: binding reference of type 'Snmp_pp::Pdu&' to 'const Snmp_pp::Pdu' discards qualifiers
1172 | status = snmpmsg.loadv3(Snmp::get_mpv3(), pdu, engine_id, security_name,
|
Fixes:
- http://autobuild.buildroot.net/results/d7347b8b3953596b66da6ca6d85f084fb427934c
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
20 lines
553 B
Makefile
20 lines
553 B
Makefile
################################################################################
|
|
#
|
|
# agentpp
|
|
#
|
|
################################################################################
|
|
|
|
AGENTPP_VERSION = 4.6.0
|
|
AGENTPP_SOURCE = agent++-$(AGENTPP_VERSION).tar.gz
|
|
AGENTPP_SITE = http://www.agentpp.com/download
|
|
AGENTPP_LICENSE = Apache-2.0
|
|
AGENTPP_LICENSE_FILES = LICENSE-2_0.txt
|
|
AGENTPP_INSTALL_STAGING = YES
|
|
AGENTPP_DEPENDENCIES = host-pkgconf snmppp
|
|
AGENTPP_CONF_OPTS += \
|
|
--disable-proxy \
|
|
--disable-forwarder \
|
|
--disable-rpath
|
|
|
|
$(eval $(autotools-package))
|