|  | D++ (DPP)
    C++ Discord API Bot Library | 
Implements a simple non-blocking SSL stream client. More...
#include <sslclient.h>
 Inheritance diagram for dpp::ssl_client:
 Inheritance diagram for dpp::ssl_client: Collaboration diagram for dpp::ssl_client:
 Collaboration diagram for dpp::ssl_client:| Public Member Functions | |
| ssl_client (const std::string &_hostname, const std::string &_port="443") | |
| Connect to a specified host and port. Throws std::runtime_error on fatal error.  More... | |
| virtual | ~ssl_client () | 
| Destroy the ssl_client object.  More... | |
| virtual void | close () | 
| Close SSL connection.  More... | |
| uint64_t | get_bytes_in () | 
| uint64_t | get_bytes_out () | 
| virtual bool | HandleBuffer (std::string &buffer) | 
| Handle input from the input buffer.  More... | |
| virtual void | log (dpp::loglevel severity, const std::string &msg) const | 
| Log a message.  More... | |
| void | ReadLoop () | 
| Nonblocking I/O loop.  More... | |
| virtual void | write (const std::string &data) | 
| Write to the output buffer.  More... | |
| Public Attributes | |
| std::function< int()> | custom_readable_fd | 
| Attaching an additional file descriptor to this function will send notifications when there is data to read.  More... | |
| std::function< void()> | custom_readable_ready | 
| This event will be called when you can read from the custom fd.  More... | |
| std::function< int()> | custom_writeable_fd | 
| Attaching an additional file descriptor to this function will send notifications when you are able to write to the socket.  More... | |
| std::function< void()> | custom_writeable_ready | 
| This event will be called when you can write to a custom fd.  More... | |
| Protected Member Functions | |
| virtual void | Connect () | 
| virtual void | OneSecondTimer () | 
| Protected Attributes | |
| std::string | buffer | 
| uint64_t | bytes_in | 
| uint64_t | bytes_out | 
| std::string | cipher | 
| SSL_CTX * | ctx | 
| std::string | hostname | 
| time_t | last_tick | 
| bool | nonblocking | 
| std::string | obuffer | 
| std::string | port | 
| int | sfd | 
| SSL * | ssl | 
Implements a simple non-blocking SSL stream client.
Note that although the design is non-blocking the Run() method will execute in an infinite loop until the socket disconnects. This is intended to be run within a std::thread.
| dpp::ssl_client::ssl_client | ( | const std::string & | _hostname, | 
| const std::string & | _port = "443" | ||
| ) | 
Connect to a specified host and port. Throws std::runtime_error on fatal error.
| _hostname | The hostname to connect to | 
| _port | the Port number to connect to | 
| 
 | virtual | 
Destroy the ssl_client object.
| 
 | virtual | 
Close SSL connection.
Reimplemented in dpp::websocket_client.
| 
 | protectedvirtual | 
Start connection
Reimplemented in dpp::websocket_client.
| uint64_t dpp::ssl_client::get_bytes_in | ( | ) | 
Get total bytes received
| uint64_t dpp::ssl_client::get_bytes_out | ( | ) | 
Get total bytes sent
| 
 | virtual | 
Handle input from the input buffer.
| buffer | the buffer content. Will be modified removing any processed front elements | 
Reimplemented in dpp::websocket_client.
| 
 | virtual | 
Log a message.
| severity | severity of log message | 
| msg | Log message to send | 
Reimplemented in dpp::discord_client.
| 
 | protectedvirtual | 
Called every second
Reimplemented in dpp::discord_client, dpp::discord_voice_client, and dpp::websocket_client.
| void dpp::ssl_client::ReadLoop | ( | ) | 
Nonblocking I/O loop.
| 
 | virtual | 
Write to the output buffer.
| data | Data to be written to the buffer | 
Reimplemented in dpp::websocket_client.
| 
 | protected | 
Input buffer received from openssl
| 
 | protected | 
Bytes in
| 
 | protected | 
Bytes out
| 
 | protected | 
SSL cipher in use
| 
 | protected | 
OpenSSL context
| std::function<int()> dpp::ssl_client::custom_readable_fd | 
Attaching an additional file descriptor to this function will send notifications when there is data to read.
NOTE: Only hook this if you NEED it as it can increase CPU usage of the thread! Returning -1 means that you don't want to be notified.
| std::function<void()> dpp::ssl_client::custom_readable_ready | 
This event will be called when you can read from the custom fd.
| std::function<int()> dpp::ssl_client::custom_writeable_fd | 
Attaching an additional file descriptor to this function will send notifications when you are able to write to the socket.
NOTE: Only hook this if you NEED it as it can increase CPU usage of the thread! You should toggle this to -1 when you do not have anything to write otherwise it'll keep triggering repeatedly (it is level triggered).
| std::function<void()> dpp::ssl_client::custom_writeable_ready | 
This event will be called when you can write to a custom fd.
| 
 | protected | 
Hostname connected to
| 
 | protected | 
For timers
| 
 | protected | 
True if in nonblocking mode. The socket switches to nonblocking mode once ReadLoop is called.
| 
 | protected | 
Output buffer for sending to openssl
| 
 | protected | 
Port connected to
| 
 | protected | 
Raw file descriptor of connection
| 
 | protected | 
OpenSSL session