From b4b995dd19d20e18322a5fd82071b136e3f9aadc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Guti=C3=A9rrez=20de=20Quevedo=20P=C3=A9?= =?UTF-8?q?rez?= Date: Fri, 28 Mar 2025 10:34:52 +0100 Subject: [PATCH] more stuff --- include/Proxy.h | 5 +++-- src/Proxy.cpp | 3 +-- src/Utils.cpp | 9 ++++----- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/include/Proxy.h b/include/Proxy.h index 861f112..72c0033 100644 --- a/include/Proxy.h +++ b/include/Proxy.h @@ -9,10 +9,11 @@ #define SMTP_STATE_WAIT_FOR_RCPTTO 2 #define SMTP_STATE_WAIT_FOR_DATA 3 -class Proxy { +class Proxy +{ public: Proxy(); - void run(boost::asio::ssl::stream* outside); + void run(boost::asio::ssl::stream* outside, const std::string& peer_address); private: boost::asio::io_service& io_service_; diff --git a/src/Proxy.cpp b/src/Proxy.cpp index 9dac485..174b4a4 100644 --- a/src/Proxy.cpp +++ b/src/Proxy.cpp @@ -1,6 +1,5 @@ // Proxy.cpp #include "Proxy.h" -#include "HostnameResolver.h" #include #include #include @@ -10,7 +9,7 @@ extern Configfile cfg; -void Proxy::run(boost::asio::ssl::stream* outside) { +void Proxy::run(boost::asio::ssl::stream* outside, const std::string& peer_address) { boost::asio::ssl::stream* inside; // Original comments and variables retained std::string from = ""; diff --git a/src/Utils.cpp b/src/Utils.cpp index 20c3631..b20d5bb 100644 --- a/src/Utils.cpp +++ b/src/Utils.cpp @@ -67,12 +67,11 @@ string Utils::ulongtostr(unsigned long number) * @return string lowercase version of s * */ -string Utils::strtolower(string s) +string Utils::strtolower(const std::string_view s) { - for(unsigned int i=0;i