]> git.ipfire.org Git - thirdparty/squid.git/blame - src/snmp/Session.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / snmp / Session.h
CommitLineData
51ea0904 1/*
bde978a6 2 * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
51ea0904 3 *
bbc27441
AJ
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
51ea0904
CT
7 */
8
bbc27441
AJ
9/* DEBUG: section 49 SNMP Interface */
10
51ea0904
CT
11#ifndef SQUID_SNMPX_SESSION_H
12#define SQUID_SNMPX_SESSION_H
13
51ea0904
CT
14#include "ipc/forward.h"
15#include "snmp.h"
16#include "snmp_session.h"
17
51ea0904
CT
18namespace Snmp
19{
20
21/// snmp_session wrapper add pack/unpack feature
22class Session: public snmp_session
23{
24public:
25 Session();
26 Session(const Session& session);
27 Session& operator = (const Session& session);
28 ~Session();
29
30 void pack(Ipc::TypedMsgHdr& msg) const; ///< prepare for sendmsg()
31 void unpack(const Ipc::TypedMsgHdr& msg); ///< restore struct from the message
32 void clear(); ///< clear internal members
33
34private:
35 void free(); ///< free internal members
36 void assign(const Session& session); ///< perform full assignment
37};
38
39} // namespace Snmp
40
41#endif /* SQUID_SNMPX_SESSION_H */
f53969cc 42