mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-27 11:17:49 +02:00
HTTP proxy redirects to 0.0.0.0:7070/?page=jumpservices
This commit is contained in:
parent
6b3bd755b0
commit
9f41151156
3 changed files with 9 additions and 13 deletions
|
@ -20,6 +20,7 @@
|
|||
#include "I2PTunnel.h"
|
||||
#include "Config.h"
|
||||
#include "HTTP.h"
|
||||
#include "HTTPServer.h"
|
||||
|
||||
namespace i2p {
|
||||
namespace proxy {
|
||||
|
@ -113,15 +114,8 @@ namespace proxy {
|
|||
void HTTPReqHandler::RedirectToJumpService(/*HTTPReqHandler::errTypes error*/)
|
||||
{
|
||||
std::stringstream ss;
|
||||
std::string httpAddr; i2p::config::GetOption("http.address", httpAddr);
|
||||
uint16_t httpPort; i2p::config::GetOption("http.port", httpPort);
|
||||
|
||||
ss << "HTTP/1.1 302 Found\r\n"
|
||||
<< "Connection: close\r\n"
|
||||
<< "Location: http://" << httpAddr << ":" << httpPort << "/?page=jumpservices&address=" << m_address << "\r\n"
|
||||
<< "\r\n";
|
||||
std::string response = ss.str();
|
||||
boost::asio::async_write(*m_sock, boost::asio::buffer(response),
|
||||
i2p::http::ShowJumpServices (ss, m_address);
|
||||
boost::asio::async_write(*m_sock, boost::asio::buffer(ss.str ()),
|
||||
std::bind(&HTTPReqHandler::SentHTTPFailed, shared_from_this(), std::placeholders::_1));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue