Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 733 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 733 Bytes

Socks Proxy Server

Simple proxy server in C++ language using boost::asio library and socks protocol, based on boost_socks5 project

Prerequisites

we use asio and some other library of boost in this project, for installing boost you can write this command:

sudo apt-get install libboost-all-dev

For logging, we use spdlog , you can clone it from below github repo:

git clone https://github.com/gabime/spdlog.git

Installation

compile project with CMake:

mkdir build
cd build
cmake ..
make

and run:

./main

License

Distributed under the MIT License. See LICENSE.txt for more information.