/* * Copyright (C) 1996-2023 The Squid Software Foundation and contributors * * Squid software is distributed under GPLv2+ license and includes * contributions from numerous individuals and organizations. * Please see the COPYING and CONTRIBUTORS files for details. */ /* DEBUG: section 49 SNMP Interface */ #ifndef SQUID_SNMPX_SESSION_H #define SQUID_SNMPX_SESSION_H #include "ipc/forward.h" #include "snmp.h" #include "snmp_session.h" namespace Snmp { /// snmp_session wrapper add pack/unpack feature class Session: public snmp_session { public: Session(); Session(const Session& session); Session& operator = (const Session& session); ~Session() { reset(); } void pack(Ipc::TypedMsgHdr& msg) const; ///< prepare for sendmsg() void unpack(const Ipc::TypedMsgHdr& msg); ///< restore struct from the message private: void reset(); ///< free internal members }; } // namespace Snmp #endif /* SQUID_SNMPX_SESSION_H */