Some checks failed
continuous-integration/drone/push Build is failing
21 lines
491 B
C++
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;
|
|
};
|