gloox  1.0
Public Member Functions | List of all members
TLSHandler Class Reference

#include <tlshandler.h>

Inheritance diagram for TLSHandler:
Inheritance graph
[legend]

Public Member Functions

virtual ~TLSHandler ()
virtual void handleEncryptedData (const TLSBase *base, const std::string &data)=0
virtual void handleDecryptedData (const TLSBase *base, const std::string &data)=0
virtual void handleHandshakeResult (const TLSBase *base, bool success, CertInfo &certinfo)=0

Detailed Description

An interface that allows for interacting with TLS implementations derived from TLSBase.

Author
Jakob Schroeter js@ca.nosp@m.maya.nosp@m..net
Since
0.9

Definition at line 34 of file tlshandler.h.

Constructor & Destructor Documentation

virtual ~TLSHandler ( )
inlinevirtual

Virtual Destructor.

Definition at line 40 of file tlshandler.h.

Member Function Documentation

virtual void handleDecryptedData ( const TLSBase base,
const std::string &  data 
)
pure virtual

Reimplement this function to receive decrypted data from a TLSBase implementation.

Parameters
baseThe encryption implementation which called this function.
dataThe decrypted data (e.g. to parse).

Implemented in ClientBase, and ConnectionTLS.

virtual void handleEncryptedData ( const TLSBase base,
const std::string &  data 
)
pure virtual

Reimplement this function to receive encrypted data from a TLSBase implementation.

Parameters
baseThe encryption implementation which called this function.
dataThe encrypted data (e.g. to send over the wire).

Implemented in ClientBase, and ConnectionTLS.

virtual void handleHandshakeResult ( const TLSBase base,
bool  success,
CertInfo certinfo 
)
pure virtual

Reimplement this function to receive the result of a TLS handshake.

Parameters
baseThe encryption implementation which called this function.
successWhether or not the handshake was successful.
certinfoInformation about the server's certificate.

Implemented in ClientBase, and ConnectionTLS.


The documentation for this class was generated from the following file: