gloox
1.0.9
Main Page
Related Pages
Namespaces
Classes
Files
File List
src
tlsgnutlsclientanon.h
1
/*
2
Copyright (c) 2007-2013 by Jakob Schroeter <js@camaya.net>
3
This file is part of the gloox library. http://camaya.net/gloox
4
5
This software is distributed under a license. The full license
6
agreement can be found in the file LICENSE in this distribution.
7
This software may not be copied, modified, sold or distributed
8
other than expressed in the named license agreement.
9
10
This software is distributed without any warranty.
11
*/
12
13
14
15
#ifndef TLSGNUTLSCLIENTANON_H__
16
#define TLSGNUTLSCLIENTANON_H__
17
18
#include "tlsgnutlsbase.h"
19
20
#include "config.h"
21
22
#ifdef HAVE_GNUTLS
23
24
#include <gnutls/gnutls.h>
25
#include <gnutls/x509.h>
26
27
namespace
gloox
28
{
29
38
class
GnuTLSClientAnon
:
public
GnuTLSBase
39
{
40
public
:
45
GnuTLSClientAnon
(
TLSHandler
* th );
46
50
virtual
~GnuTLSClientAnon
();
51
52
// reimplemented from TLSBase
53
virtual
bool
init
(
const
std::string& clientKey =
EmptyString
,
54
const
std::string& clientCerts =
EmptyString
,
55
const
StringList
& cacerts =
StringList
() );
56
57
// reimplemented from TLSBase
58
virtual
void
cleanup
();
59
60
private
:
61
virtual
void
getCertInfo();
62
63
gnutls_anon_client_credentials_t m_anoncred;
64
};
65
66
}
67
68
#endif // HAVE_GNUTLS
69
70
#endif // TLSGNUTLSCLIENTANON_H__
Generated on Tue Oct 15 2013 19:25:21 for gloox by
1.8.1.2