Skip to content

Commit

Permalink
Реализация поддержки socks5 прокси-сервера
Browse files Browse the repository at this point in the history
  • Loading branch information
anyks committed Oct 3, 2021
1 parent cb97760 commit 485d2cd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
6 changes: 6 additions & 0 deletions include/server/socks5.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ namespace awh {
private:
// Внешняя функция проверки авторизации
function <bool (const string &, const string &)> authFn = nullptr;
public:
/**
* getServer Метод извлечения параметров запрашиваемого сервера
* @return параметры запрашиваемого сервера
*/
const serv_t & getServer() const noexcept;
public:
/**
* resCmd Метод получения бинарного буфера ответа
Expand Down
8 changes: 8 additions & 0 deletions src/server/socks5.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@
// Подключаем заголовочный файл
#include <server/socks5.hpp>

/**
* getServer Метод извлечения параметров запрашиваемого сервера
* @return параметры запрашиваемого сервера
*/
const awh::Socks5Server::serv_t & awh::Socks5Server::getServer() const noexcept {
// Выводим запрашиваемый сервер
return this->server;
}
/**
* resCmd Метод получения бинарного буфера ответа
* @param rep код ответа сервера
Expand Down

0 comments on commit 485d2cd

Please sign in to comment.