2017-08-06 18:36:14 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <boost/asio.hpp>
|
|
|
|
#include <boost/lexical_cast.hpp>
|
|
|
|
#include <thread>
|
|
|
|
#include <array>
|
|
|
|
#include <iomanip>
|
|
|
|
|
2017-08-06 19:54:41 +00:00
|
|
|
#include <boost/bind.hpp>
|
|
|
|
|
2017-08-06 18:36:14 +00:00
|
|
|
#define SSL_R_SHORT_READ 219
|
|
|
|
#include "ssl/ssl_locl.h"
|
|
|
|
#include <boost/asio/ssl.hpp>
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(close)
|
|
|
|
#undef close
|
|
|
|
#endif
|
|
|
|
|
|
|
|
enum AddressType
|
|
|
|
{
|
|
|
|
AT_IPV4 = 0,
|
|
|
|
AT_HOST = 3,
|
|
|
|
AT_IPV6 = 4
|
|
|
|
};
|
|
|
|
|
|
|
|
class ConnectResponseRecord
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
std::vector<unsigned char> rawData;
|
|
|
|
|
|
|
|
enum ConnectResponseType
|
|
|
|
{
|
|
|
|
CRT_SUCCESS = 0,
|
|
|
|
CRT_GENERAL_SOCKS_SERVER_FAILURE = 1,
|
|
|
|
CRT_CONNECTION_NOT_ALLOWED_BY_RULESET = 2,
|
|
|
|
CRT_NETWORK_UNREACHABLE = 3,
|
|
|
|
CRT_HOST_UNREACHABLE = 4,
|
|
|
|
CRT_CONNECTION_REFUSED = 5,
|
|
|
|
CRT_TTL_EXPIRED = 6,
|
|
|
|
CRT_COMMAND_NOT_SUPPORTED = 7,
|
|
|
|
CRT_ADDRESS_TYPE_NOT_SUPPORTED = 8,
|
|
|
|
CRT_TO_FF_UNASSIGNED = 9
|
|
|
|
};
|
|
|
|
|
|
|
|
ConnectResponseType connectResponseType;
|
|
|
|
|
|
|
|
AddressType addressType;
|
|
|
|
|
|
|
|
std::string address;
|
|
|
|
|
|
|
|
uint16_t port;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ConnectRequestRecord
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
std::string address;
|
|
|
|
uint16_t port;
|
|
|
|
|
|
|
|
std::string getRequestData();
|
|
|
|
};
|
|
|
|
|
|
|
|
std::string ConnectRequestRecord::getRequestData()
|
|
|
|
{
|
|
|
|
std::string data = "";
|
|
|
|
data += 0x05;
|
|
|
|
data += 0x01;
|
|
|
|
data += char(0x00);
|
|
|
|
data += 0x03;
|
|
|
|
data += static_cast<unsigned char>(address.size());
|
|
|
|
data += address;
|
|
|
|
data += port / 256;
|
|
|
|
data += port % 256;
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-08-06 19:54:41 +00:00
|
|
|
typedef boost::asio::ssl::stream<boost::asio::ip::tcp::socket> ssl_socket;
|
2017-08-06 18:36:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ProxySession :
|
|
|
|
public std::enable_shared_from_this<ProxySession>
|
|
|
|
{
|
|
|
|
public:
|
2017-08-06 19:54:41 +00:00
|
|
|
ProxySession(std::shared_ptr<ssl_socket> socket, boost::asio::io_service& inIoService)
|
2017-08-06 18:36:14 +00:00
|
|
|
: ioService(inIoService)
|
2017-08-06 19:54:41 +00:00
|
|
|
, mSocket(socket)
|
2017-08-06 18:36:14 +00:00
|
|
|
, outsideConnectSocket(ioService)
|
|
|
|
{
|
|
|
|
std::cout << "ProxySession Create" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
~ProxySession()
|
|
|
|
{
|
|
|
|
std::cout << "ProxySession Destroy" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void start()
|
|
|
|
{
|
2017-08-06 19:54:41 +00:00
|
|
|
asyncHandshake();
|
|
|
|
//readClientVersion();
|
2017-08-06 18:36:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2017-08-06 19:54:41 +00:00
|
|
|
ssl_socket& socket()
|
|
|
|
{
|
|
|
|
return *mSocket;
|
|
|
|
}
|
|
|
|
|
|
|
|
ssl_socket::lowest_layer_type& lowerSocket()
|
|
|
|
{
|
|
|
|
return mSocket->lowest_layer();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void asyncHandshake()
|
|
|
|
{
|
|
|
|
auto self(shared_from_this());
|
|
|
|
|
|
|
|
socket().async_handshake(boost::asio::ssl::stream_base::server,
|
|
|
|
[this, self](boost::system::error_code ec) {
|
|
|
|
|
|
|
|
if (!ec)
|
|
|
|
{
|
|
|
|
readClientVersion();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lowerSocket().close();
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
void handleHandshake(const boost::system::error_code& error)
|
|
|
|
{
|
|
|
|
if (!error)
|
|
|
|
{
|
|
|
|
readClientVersion();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lowerSocket().close();
|
|
|
|
}
|
|
|
|
}*/
|
|
|
|
|
2017-08-06 18:36:14 +00:00
|
|
|
|
|
|
|
std::array<unsigned char, 3> clientVersion;
|
|
|
|
|
|
|
|
void readClientVersion()
|
|
|
|
{
|
|
|
|
auto self(shared_from_this());
|
|
|
|
|
2017-08-06 19:54:41 +00:00
|
|
|
boost::asio::async_read(socket(),
|
2017-08-06 18:36:14 +00:00
|
|
|
boost::asio::buffer(clientVersion.data(), clientVersion.size()),
|
|
|
|
[this, self](boost::system::error_code ec, std::size_t /*length*/)
|
|
|
|
{
|
|
|
|
if (!ec)
|
|
|
|
{
|
|
|
|
if (clientVersion[0] == 0x05 && clientVersion[1] == 0x01 && clientVersion[2] == 0x02)
|
|
|
|
{
|
|
|
|
sendServerVersion();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-08-06 19:54:41 +00:00
|
|
|
lowerSocket().close();
|
2017-08-06 18:36:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-08-06 19:54:41 +00:00
|
|
|
lowerSocket().close();
|
2017-08-06 18:36:14 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void sendServerVersion()
|
|
|
|
{
|
|
|
|
|
|
|
|
auto self(shared_from_this());
|
|
|
|
|
|
|
|
std::array<char, 2> version = { 0x05, 0x02 };
|
|
|
|
|
2017-08-06 19:54:41 +00:00
|
|
|
boost::asio::async_write(socket(),
|
2017-08-06 18:36:14 +00:00
|
|
|
boost::asio::buffer(version.data(), version.size()),
|
|
|
|
[this, self](boost::system::error_code ec, std::size_t length)
|
|
|
|
{
|
|
|
|
if (!ec)
|
|
|
|
{
|
|
|
|
readLoginPassword();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-08-06 19:54:41 +00:00
|
|
|
lowerSocket().close();
|
2017-08-06 18:36:14 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void readLoginPassword()
|
|
|
|
{
|
|
|
|
std::string login = "telegram-proxy-user";
|
|
|
|
std::string password = "telegram-telegram-999112";
|
|
|
|
std::string expectedData = "";
|
|
|
|
expectedData += 0x01;
|
|
|
|
expectedData += static_cast<unsigned char>(login.size());
|
|
|
|
expectedData += login;
|
|
|
|
expectedData += static_cast<unsigned char>(password.size());
|
|
|
|
expectedData += password;
|
|
|
|
|
|
|
|
std::shared_ptr<std::string> clientLoginPasswordPtr = std::make_shared<std::string>();
|
|
|
|
|
|
|
|
|
|
|
|
clientLoginPasswordPtr->resize(expectedData.size());
|
|
|
|
|
|
|
|
|
|
|
|
auto self(shared_from_this());
|
|
|
|
|
|
|
|
|
2017-08-06 19:54:41 +00:00
|
|
|
boost::asio::async_read(socket(),
|
2017-08-06 18:36:14 +00:00
|
|
|
boost::asio::buffer(&((*clientLoginPasswordPtr)[0]), clientLoginPasswordPtr->size()),
|
|
|
|
[this, self, expectedData, clientLoginPasswordPtr](boost::system::error_code ec, std::size_t /*length*/)
|
|
|
|
{
|
|
|
|
if (!ec)
|
|
|
|
{
|
|
|
|
if (*clientLoginPasswordPtr == expectedData)
|
|
|
|
{
|
|
|
|
sendAuthStatus();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-08-06 19:54:41 +00:00
|
|
|
lowerSocket().close();
|
2017-08-06 18:36:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-08-06 19:54:41 +00:00
|
|
|
lowerSocket().close();
|
2017-08-06 18:36:14 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
std::array<unsigned char, 2> authStatus = { 0x01, 0x00 };
|
|
|
|
|
|
|
|
void sendAuthStatus()
|
|
|
|
{
|
|
|
|
auto self(shared_from_this());
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-08-06 19:54:41 +00:00
|
|
|
boost::asio::async_write(socket(),
|
2017-08-06 18:36:14 +00:00
|
|
|
boost::asio::buffer(authStatus.data(), authStatus.size()),
|
|
|
|
[this, self](boost::system::error_code ec, std::size_t length)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (!ec)
|
|
|
|
{
|
|
|
|
readConnectRequest();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-08-06 19:54:41 +00:00
|
|
|
lowerSocket().close();
|
2017-08-06 18:36:14 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void readConnectRequest()
|
|
|
|
{
|
|
|
|
std::shared_ptr<std::array<unsigned char, 5>> firstPartPtr = std::make_shared<std::array<unsigned char, 5>>();
|
|
|
|
|
|
|
|
|
|
|
|
auto self(shared_from_this());
|
|
|
|
|
|
|
|
|
2017-08-06 19:54:41 +00:00
|
|
|
boost::asio::async_read(socket(),
|
2017-08-06 18:36:14 +00:00
|
|
|
boost::asio::buffer(firstPartPtr->data(), firstPartPtr->size()),
|
|
|
|
[this, self, firstPartPtr](boost::system::error_code ec, std::size_t /*length*/)
|
|
|
|
{
|
|
|
|
if (!ec)
|
|
|
|
{
|
|
|
|
if ((*firstPartPtr)[0] == 0x05 && (*firstPartPtr)[1] == 0x01 && (*firstPartPtr)[2] == 0x00 && (*firstPartPtr)[3] == 0x03)
|
|
|
|
{
|
|
|
|
//unsigned int len = (*firstPartPtr)[4];
|
|
|
|
|
|
|
|
readConnectRequestPart2(firstPartPtr);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-08-06 19:54:41 +00:00
|
|
|
lowerSocket().close();
|
2017-08-06 18:36:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-08-06 19:54:41 +00:00
|
|
|
lowerSocket().close();
|
2017-08-06 18:36:14 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void readConnectRequestPart2(std::shared_ptr<std::array<unsigned char, 5>> firstPartPtr)
|
|
|
|
{
|
|
|
|
unsigned int len = (*firstPartPtr)[4];
|
|
|
|
|
|
|
|
std::shared_ptr<std::vector<unsigned char>> secondPartPtr = std::make_shared<std::vector<unsigned char>>();
|
|
|
|
|
|
|
|
|
|
|
|
secondPartPtr->resize(len + 2);
|
|
|
|
|
|
|
|
auto self(shared_from_this());
|
|
|
|
|
|
|
|
|
2017-08-06 19:54:41 +00:00
|
|
|
boost::asio::async_read(socket(),
|
2017-08-06 18:36:14 +00:00
|
|
|
boost::asio::buffer(secondPartPtr->data(), secondPartPtr->size()),
|
|
|
|
[this, self, firstPartPtr, secondPartPtr, len](boost::system::error_code ec, std::size_t /*length*/)
|
|
|
|
{
|
|
|
|
if (!ec)
|
|
|
|
{
|
|
|
|
|
|
|
|
ConnectRequestRecord connectRequestRecord;
|
|
|
|
|
|
|
|
connectRequestRecord.address = std::string(&((*secondPartPtr)[0]), &((*secondPartPtr)[0]) + len);
|
|
|
|
connectRequestRecord.port = (*secondPartPtr)[len] * 256 + (*secondPartPtr)[len + 1];
|
|
|
|
|
|
|
|
boost::asio::ip::tcp::resolver resolver(this->ioService);
|
|
|
|
auto endpointIterator = resolver.resolve({ connectRequestRecord.address, boost::lexical_cast<std::string>(connectRequestRecord.port) });
|
|
|
|
|
|
|
|
|
|
|
|
doConnectOutput(endpointIterator, connectRequestRecord);
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-08-06 19:54:41 +00:00
|
|
|
lowerSocket().close();
|
2017-08-06 18:36:14 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void doConnectOutput(boost::asio::ip::tcp::resolver::iterator endpointIterator, ConnectRequestRecord connectRequestRecord)
|
|
|
|
{
|
|
|
|
auto self(shared_from_this());
|
|
|
|
|
|
|
|
boost::asio::async_connect(outsideConnectSocket, endpointIterator,
|
|
|
|
[this, self, connectRequestRecord](boost::system::error_code ec, boost::asio::ip::tcp::resolver::iterator)
|
|
|
|
{
|
|
|
|
if (!ec)
|
|
|
|
{
|
|
|
|
sendConnectResponse(connectRequestRecord);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-08-06 19:54:41 +00:00
|
|
|
lowerSocket().close();
|
2017-08-06 18:36:14 +00:00
|
|
|
outsideConnectSocket.close();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void sendConnectResponse(ConnectRequestRecord connectRequestRecord)
|
|
|
|
{
|
|
|
|
auto self(shared_from_this());
|
|
|
|
|
|
|
|
std::string connectResponse;
|
|
|
|
|
|
|
|
connectResponse += 0x05;
|
|
|
|
connectResponse += static_cast<char>(0x00);
|
|
|
|
connectResponse += static_cast<char>(0x00);
|
|
|
|
connectResponse += 0x03;
|
|
|
|
|
|
|
|
connectResponse += static_cast<unsigned char>(connectRequestRecord.address.size());
|
|
|
|
connectResponse += connectRequestRecord.address;
|
|
|
|
connectResponse += static_cast<unsigned char>(connectRequestRecord.port / 256);
|
|
|
|
connectResponse += static_cast<unsigned char>(connectRequestRecord.port % 256);
|
|
|
|
|
|
|
|
|
2017-08-06 19:54:41 +00:00
|
|
|
boost::asio::async_write(socket(),
|
2017-08-06 18:36:14 +00:00
|
|
|
boost::asio::buffer(connectResponse.data(), connectResponse.size()),
|
|
|
|
[this, self](boost::system::error_code ec, std::size_t length)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (!ec)
|
|
|
|
{
|
|
|
|
transferDataForward();
|
|
|
|
transferDataBackward();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-08-06 19:54:41 +00:00
|
|
|
lowerSocket().close();
|
2017-08-06 18:36:14 +00:00
|
|
|
outsideConnectSocket.close();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char forwardChar;
|
|
|
|
unsigned char backwardChar;
|
|
|
|
|
|
|
|
|
|
|
|
void transferDataForward()
|
|
|
|
{
|
|
|
|
auto self(shared_from_this());
|
|
|
|
|
2017-08-06 19:54:41 +00:00
|
|
|
boost::asio::async_read(socket(),
|
2017-08-06 18:36:14 +00:00
|
|
|
boost::asio::buffer(&forwardChar, 1),
|
|
|
|
[this, self](boost::system::error_code ec, std::size_t /*length*/)
|
|
|
|
{
|
|
|
|
if (!ec)
|
|
|
|
{
|
|
|
|
boost::asio::async_write(outsideConnectSocket,
|
|
|
|
boost::asio::buffer(&forwardChar, 1),
|
|
|
|
[this, self](boost::system::error_code ec, std::size_t length)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (!ec)
|
|
|
|
{
|
|
|
|
transferDataForward();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
outsideConnectSocket.close();
|
2017-08-06 19:54:41 +00:00
|
|
|
lowerSocket().close();
|
2017-08-06 18:36:14 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
outsideConnectSocket.close();
|
2017-08-06 19:54:41 +00:00
|
|
|
lowerSocket().close();
|
2017-08-06 18:36:14 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void transferDataBackward()
|
|
|
|
{
|
|
|
|
auto self(shared_from_this());
|
|
|
|
|
|
|
|
boost::asio::async_read(outsideConnectSocket,
|
|
|
|
boost::asio::buffer(&backwardChar, 1),
|
|
|
|
[this, self](boost::system::error_code ec, std::size_t /*length*/)
|
|
|
|
{
|
|
|
|
if (!ec)
|
|
|
|
{
|
2017-08-06 19:54:41 +00:00
|
|
|
boost::asio::async_write(socket(),
|
2017-08-06 18:36:14 +00:00
|
|
|
boost::asio::buffer(&backwardChar, 1),
|
|
|
|
[this, self](boost::system::error_code ec, std::size_t length)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (!ec)
|
|
|
|
{
|
|
|
|
transferDataBackward();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
outsideConnectSocket.close();
|
2017-08-06 19:54:41 +00:00
|
|
|
lowerSocket().close();
|
2017-08-06 18:36:14 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
outsideConnectSocket.close();
|
2017-08-06 19:54:41 +00:00
|
|
|
lowerSocket().close();
|
2017-08-06 18:36:14 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::asio::io_service& ioService;
|
|
|
|
|
2017-08-06 19:54:41 +00:00
|
|
|
std::shared_ptr<ssl_socket> mSocket;
|
2017-08-06 18:36:14 +00:00
|
|
|
|
|
|
|
boost::asio::ip::tcp::socket outsideConnectSocket;
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ProxyServer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ProxyServer(boost::asio::io_service& inIoService,
|
2017-08-06 19:54:41 +00:00
|
|
|
const boost::asio::ip::tcp::endpoint& endpoint,
|
|
|
|
boost::asio::ssl::context& sslContext)
|
2017-08-06 18:36:14 +00:00
|
|
|
: ioService(inIoService)
|
2017-08-06 19:54:41 +00:00
|
|
|
, acceptor(inIoService, endpoint)
|
|
|
|
, socket(std::make_shared<ssl_socket>(inIoService, sslContext))
|
2017-08-06 18:36:14 +00:00
|
|
|
{
|
|
|
|
doAccept();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void doAccept()
|
|
|
|
{
|
2017-08-06 19:54:41 +00:00
|
|
|
acceptor.async_accept(socket->lowest_layer(),
|
2017-08-06 18:36:14 +00:00
|
|
|
[this](boost::system::error_code ec)
|
|
|
|
{
|
|
|
|
if (!ec)
|
|
|
|
{
|
2017-08-06 19:54:41 +00:00
|
|
|
std::make_shared<ProxySession>(socket, ioService)->start();
|
2017-08-06 18:36:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
counter++;
|
|
|
|
|
|
|
|
doAccept();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::asio::io_service& ioService;
|
|
|
|
|
|
|
|
boost::asio::ip::tcp::acceptor acceptor;
|
2017-08-06 19:54:41 +00:00
|
|
|
std::shared_ptr<ssl_socket> socket;
|
2017-08-06 18:36:14 +00:00
|
|
|
|
|
|
|
//std::map<size_t, ProxySession> proxySessionMap;
|
|
|
|
|
|
|
|
size_t counter = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
|
|
|
|
boost::asio::io_service ioService;
|
|
|
|
|
|
|
|
boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::tcp::v4(), 8043);
|
|
|
|
|
2017-08-06 19:54:41 +00:00
|
|
|
|
|
|
|
boost::asio::ssl::context sslContext(boost::asio::ssl::context::sslv23);
|
|
|
|
|
|
|
|
sslContext.set_options(
|
|
|
|
boost::asio::ssl::context::default_workarounds
|
|
|
|
| boost::asio::ssl::context::no_sslv2
|
|
|
|
| boost::asio::ssl::context::single_dh_use);
|
|
|
|
|
|
|
|
|
|
|
|
std::function<std::string(std::size_t, boost::asio::ssl::context_base::password_purpose)> f = [](std::size_t, boost::asio::ssl::context_base::password_purpose) -> std::string { return ""; };
|
|
|
|
sslContext.set_password_callback(f);
|
|
|
|
|
|
|
|
sslContext.use_certificate_chain_file("server.crt");
|
|
|
|
|
|
|
|
sslContext.use_private_key_file("server.key", boost::asio::ssl::context::pem);
|
|
|
|
|
|
|
|
sslContext.use_tmp_dh_file("dh2048.pem");
|
|
|
|
|
|
|
|
|
|
|
|
ProxyServer proxyServer(ioService, endpoint, sslContext);
|
2017-08-06 18:36:14 +00:00
|
|
|
|
|
|
|
ioService.run();
|
|
|
|
|
|
|
|
}
|
|
|
|
catch (std::exception& e)
|
|
|
|
{
|
|
|
|
std::cerr << "Exception: " << e.what() << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|