Skip to content

Commit

Permalink
Merge pull request PurpleI2P#403 from xcps/webirc2
Browse files Browse the repository at this point in the history
variable name
  • Loading branch information
orignal committed Mar 4, 2016
2 parents 091c13f + 9aeb773 commit c1ce51e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions I2PTunnel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -238,14 +238,14 @@ namespace client
std::shared_ptr<boost::asio::ip::tcp::socket> socket,
const boost::asio::ip::tcp::endpoint& target, const std::string& webircpass):
I2PTunnelConnection (owner, stream, socket, target), m_From (stream->GetRemoteIdentity ()),
m_isWebIrced (webircpass.length() ? false : true), m_WebircPass (webircpass)
m_NeedsWebIrc (webircpass.length() ? true : false), m_WebircPass (webircpass)
{
}

void I2PTunnelConnectionIRC::Write (const uint8_t * buf, size_t len)
{
if (!m_isWebIrced) {
m_isWebIrced = true;
if (m_NeedsWebIrc) {
m_NeedsWebIrc = false;
m_OutPacket.str ("");
m_OutPacket << "WEBIRC " << this->m_WebircPass << " cgiirc " << context.GetAddressBook ().ToAddress (m_From->GetIdentHash ()) << " 127.0.0.1\n";
I2PTunnelConnection::Write ((uint8_t *)m_OutPacket.str ().c_str (), m_OutPacket.str ().length ());
Expand Down
2 changes: 1 addition & 1 deletion I2PTunnel.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ namespace client
std::string m_WebircPass;
std::shared_ptr<const i2p::data::IdentityEx> m_From;
std::stringstream m_OutPacket, m_InPacket;
bool m_isWebIrced;
bool m_NeedsWebIrc;

};

Expand Down

0 comments on commit c1ce51e

Please sign in to comment.