mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 08:00:38 +03:00
HTTP proxy redirects to 0.0.0.0:7070/?page=jumpservices
This commit is contained in:
parent
6b3bd755b0
commit
9f41151156
@ -20,6 +20,7 @@
|
|||||||
#include "I2PTunnel.h"
|
#include "I2PTunnel.h"
|
||||||
#include "Config.h"
|
#include "Config.h"
|
||||||
#include "HTTP.h"
|
#include "HTTP.h"
|
||||||
|
#include "HTTPServer.h"
|
||||||
|
|
||||||
namespace i2p {
|
namespace i2p {
|
||||||
namespace proxy {
|
namespace proxy {
|
||||||
@ -113,15 +114,8 @@ namespace proxy {
|
|||||||
void HTTPReqHandler::RedirectToJumpService(/*HTTPReqHandler::errTypes error*/)
|
void HTTPReqHandler::RedirectToJumpService(/*HTTPReqHandler::errTypes error*/)
|
||||||
{
|
{
|
||||||
std::stringstream ss;
|
std::stringstream ss;
|
||||||
std::string httpAddr; i2p::config::GetOption("http.address", httpAddr);
|
i2p::http::ShowJumpServices (ss, m_address);
|
||||||
uint16_t httpPort; i2p::config::GetOption("http.port", httpPort);
|
boost::asio::async_write(*m_sock, boost::asio::buffer(ss.str ()),
|
||||||
|
|
||||||
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),
|
|
||||||
std::bind(&HTTPReqHandler::SentHTTPFailed, shared_from_this(), std::placeholders::_1));
|
std::bind(&HTTPReqHandler::SentHTTPFailed, shared_from_this(), std::placeholders::_1));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -61,6 +61,8 @@ namespace http {
|
|||||||
boost::asio::io_service::work m_Work;
|
boost::asio::io_service::work m_Work;
|
||||||
boost::asio::ip::tcp::acceptor m_Acceptor;
|
boost::asio::ip::tcp::acceptor m_Acceptor;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
void ShowJumpServices (std::stringstream& s, const std::string& address);
|
||||||
} // http
|
} // http
|
||||||
} // i2p
|
} // i2p
|
||||||
|
|
||||||
|
@ -18,10 +18,10 @@ DEFINES += USE_UPNP
|
|||||||
# git clone https://github.com/PurpleI2P/MiniUPnP-for-Android-Prebuilt.git
|
# git clone https://github.com/PurpleI2P/MiniUPnP-for-Android-Prebuilt.git
|
||||||
# git clone https://github.com/PurpleI2P/android-ifaddrs.git
|
# git clone https://github.com/PurpleI2P/android-ifaddrs.git
|
||||||
# change to your own
|
# change to your own
|
||||||
BOOST_PATH = /mnt/media/android/Boost-for-Android-Prebuilt
|
BOOST_PATH = /home/rebby/andp/Boost-for-Android-Prebuilt
|
||||||
OPENSSL_PATH = /mnt/media/android/OpenSSL-for-Android-Prebuilt
|
OPENSSL_PATH = /home/rebby/andp/OpenSSL-for-Android-Prebuilt
|
||||||
MINIUPNP_PATH = /mnt/media/android/MiniUPnP-for-Android-Prebuilt
|
MINIUPNP_PATH = /home/rebby/andp/MiniUPnP-for-Android-Prebuilt
|
||||||
IFADDRS_PATH = /mnt/media/android/android-ifaddrs
|
IFADDRS_PATH = /home/rebby/andp/android-ifaddrs
|
||||||
|
|
||||||
# Steps in Android SDK manager:
|
# Steps in Android SDK manager:
|
||||||
# 1) Check Extras/Google Support Library https://developer.android.com/topic/libraries/support-library/setup.html
|
# 1) Check Extras/Google Support Library https://developer.android.com/topic/libraries/support-library/setup.html
|
||||||
|
Loading…
Reference in New Issue
Block a user