mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-28 15:09:33 +00:00
* Allocate Net-SNMP securityAuthProto dynamically
The Net-SNMP securityAuthProto session member is freed when a session is
closed. Hence, any pointers stored in this session member must be allocated
dynamically.
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
* Prepare for Net-SNMP 5.10
Net-SNMP commit 2f2240513138 ("libsnmp: Enable type checking for session
pointers") changed the return type of snmp_sess_open() and several other
functions from void * into struct session_list *. This commit is not in
release 5.9 but will be included in the upcoming Net-SNMP release 5.10.
Prepare for the Net-SNMP 5.10 release by making the SNMPSession::session_ptr
type identical to the Net-SNMP snmp_sess_open() return type.
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
---------
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
/*
|
|
*
|
|
* (C) 2013-25 - ntop.org
|
|
*
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
*/
|
|
|
|
#ifndef _SNMP_SESSION_H_
|
|
#define _SNMP_SESSION_H_
|
|
|
|
#include "ntop_includes.h"
|
|
|
|
#ifdef HAVE_LIBSNMP
|
|
|
|
#include <net-snmp/net-snmp-config.h>
|
|
#include <net-snmp/net-snmp-includes.h>
|
|
|
|
class SNMPSession {
|
|
public:
|
|
struct snmp_session session;
|
|
decltype(snmp_sess_open(NULL)) session_ptr;
|
|
|
|
SNMPSession();
|
|
~SNMPSession();
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif /* _SNMP_SESSION_H_ */
|