summaryrefslogtreecommitdiffabout
path: root/include
authorMichael Krelin <hacker@klever.net>2008-03-02 19:07:47 (UTC)
committer Michael Krelin <hacker@klever.net>2008-03-02 19:07:47 (UTC)
commitf47e336b569739bdde8e9add96ff2c46f97257fb (patch) (unidiff)
tree5882a1b595c1fcfe1cd4bf51a848f068eddb35b6 /include
parent4c9564dce14fdc46ef6739426ee1cad87ed58ad1 (diff)
downloadlibopkele-f47e336b569739bdde8e9add96ff2c46f97257fb.zip
libopkele-f47e336b569739bdde8e9add96ff2c46f97257fb.tar.gz
libopkele-f47e336b569739bdde8e9add96ff2c46f97257fb.tar.bz2
added missing include to util-internal.h
Signed-off-by: Michael Krelin <hacker@klever.net>
Diffstat (limited to 'include') (more/less context) (ignore whitespace changes)
-rw-r--r--include/opkele/util-internal.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/opkele/util-internal.h b/include/opkele/util-internal.h
index ec091ce..258e129 100644
--- a/include/opkele/util-internal.h
+++ b/include/opkele/util-internal.h
@@ -1,37 +1,38 @@
1#ifndef __OPKELE_UTIL_INTERNAL_H 1#ifndef __OPKELE_UTIL_INTERNAL_H
2#define __OPKELE_UTIL_INTERNAL_H 2#define __OPKELE_UTIL_INTERNAL_H
3 3
4#include <openssl/bn.h> 4#include <openssl/bn.h>
5#include <openssl/dh.h> 5#include <openssl/dh.h>
6#include <opkele/types.h>
6 7
7namespace opkele { 8namespace opkele {
8 namespace util { 9 namespace util {
9 10
10 /** 11 /**
11 * Convenience class encapsulating SSL BIGNUM object for the purpose of 12 * Convenience class encapsulating SSL BIGNUM object for the purpose of
12 * automatical freeing. 13 * automatical freeing.
13 */ 14 */
14 class bignum_t { 15 class bignum_t {
15 public: 16 public:
16 BIGNUM *_bn; 17 BIGNUM *_bn;
17 18
18 bignum_t() : _bn(0) { } 19 bignum_t() : _bn(0) { }
19 bignum_t(BIGNUM *bn) : _bn(bn) { } 20 bignum_t(BIGNUM *bn) : _bn(bn) { }
20 ~bignum_t() throw() { if(_bn) BN_free(_bn); } 21 ~bignum_t() throw() { if(_bn) BN_free(_bn); }
21 22
22 bignum_t& operator=(BIGNUM *bn) { if(_bn) BN_free(_bn); _bn = bn; return *this; } 23 bignum_t& operator=(BIGNUM *bn) { if(_bn) BN_free(_bn); _bn = bn; return *this; }
23 24
24 operator const BIGNUM*(void) const { return _bn; } 25 operator const BIGNUM*(void) const { return _bn; }
25 operator BIGNUM*(void) { return _bn; } 26 operator BIGNUM*(void) { return _bn; }
26 }; 27 };
27 /** 28 /**
28 * Convenience clas encapsulating SSL DH object for the purpose of 29 * Convenience clas encapsulating SSL DH object for the purpose of
29 * automatic freeing. 30 * automatic freeing.
30 */ 31 */
31 class dh_t { 32 class dh_t {
32 public: 33 public:
33 DH *_dh; 34 DH *_dh;
34 35
35 dh_t() : _dh(0) { } 36 dh_t() : _dh(0) { }
36 dh_t(DH *dh) : _dh(dh) { } 37 dh_t(DH *dh) : _dh(dh) { }
37 ~dh_t() throw() { if(_dh) DH_free(_dh); } 38 ~dh_t() throw() { if(_dh) DH_free(_dh); }