hermes/include/Proxy.h
Juan José Gutiérrez de Quevedo Pérez b4b995dd19
Some checks failed
continuous-integration/drone/push Build is failing
more stuff
2025-03-28 10:34:52 +01:00

21 lines
491 B
C++

// Proxy.h
#pragma once
#include <string>
#include <boost/asio.hpp>
#include <boost/asio/ssl.hpp>
#define SMTP_STATE_WAIT_FOR_HELO 0
#define SMTP_STATE_WAIT_FOR_MAILFROM 1
#define SMTP_STATE_WAIT_FOR_RCPTTO 2
#define SMTP_STATE_WAIT_FOR_DATA 3
class Proxy
{
public:
Proxy();
void run(boost::asio::ssl::stream<boost::asio::ip::tcp::socket>* outside, const std::string& peer_address);
private:
boost::asio::io_service& io_service_;
boost::asio::ssl::context ssl_context;
};