- Replace raw socket implementation with Boost.Asio in Proxy class - Add proper SSL/TLS support using Boost.Asio SSL - Improve error handling with more specific exceptions - Modernize Utils class with C++17 features like string_view - Refactor Windows service implementation with smart pointers and exception handling - Enhance hostname resolution with Boost.Asio resolver
23 lines
511 B
C++
23 lines
511 B
C++
// Proxy.h
|
|
#pragma once
|
|
#include <string>
|
|
#include <boost/asio.hpp>
|
|
#include <boost/asio/ssl.hpp>
|
|
#include "Socket.h"
|
|
|
|
#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 setOutside(Socket& socket);
|
|
void run(const std::string& peer_address);
|
|
|
|
private:
|
|
boost::asio::io_context io_context_;
|
|
boost::asio::ssl::context ssl_context;
|
|
Socket* outside_socket_;
|
|
};
|