hermes/include/Proxy.h
Juanjo Gutiérrez 3c8bd791e6
Some checks failed
continuous-integration/drone/push Build is failing
More proxy stuff
2025-03-27 14:29:41 +01:00

20 lines
458 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);
private:
boost::asio::io_service& io_service_;
boost::asio::ssl::context ssl_context;
};