From 1042e19845ed56640e872c9c4dfa774e04ec2c80 Mon Sep 17 00:00:00 2001 From: 0niichan Date: Fri, 29 Jan 2016 07:18:49 +0700 Subject: [PATCH] httpProxyPort 4444 --- ClientContext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ClientContext.cpp b/ClientContext.cpp index 00c98451..0d112894 100644 --- a/ClientContext.cpp +++ b/ClientContext.cpp @@ -46,7 +46,7 @@ namespace client localDestination = CreateNewLocalDestination (keys, false); } std::string httpProxyAddr = i2p::util::config::GetArg("-httpproxyaddress", "127.0.0.1"); - uint16_t httpProxyPort = i2p::util::config::GetArg("-httpproxyport", 4446); + uint16_t httpProxyPort = i2p::util::config::GetArg("-httpproxyport", 4444); LogPrint(eLogInfo, "Clients: starting HTTP Proxy at ", httpProxyAddr, ":", httpProxyPort); m_HttpProxy = new i2p::proxy::HTTPProxy(httpProxyAddr, httpProxyPort, localDestination); m_HttpProxy->Start();