#include <sslserver.hpp>
Collaboration diagram for MynahSA::SSLServer:

Public Member Functions | |
| SSLServer (SSLConnectionManager &sobj, std::string cFile, std::string kFile, int port, std::string caFile="") | |
| SSLServer (SSLConnectionManager &sobj, X509 *certp, EVP_PKEY *pkeyp, int port, std::string caFile="") | |
| ~SSLServer () | |
| close port and cleanup information | |
| void | checkClients (int wait_t=0) |
Definition at line 46 of file sslserver.hpp.
|
||||||||||||||||||||||||
|
SSLServer constructor - takes a server object - an object that is required for dealing with SSL requests |
|
||||||||||||||||||||||||
|
in memory loading of SSL certificate and SSL RSA private key. Both must be in ASN1 format. Note: this constructor is untested |
|
|
Check for new connections, block for wait_t amount of seconds, if no connection is made within wait_t function returns. This must be called regularly from within main |