Official eMule-Board: Very Small Irc Fix - Official eMule-Board

Jump to content


Page 1 of 1

Very Small Irc Fix

#1 User is offline   ziutek 

  • Newbie
  • Pip
  • Group: Members
  • Posts: 3
  • Joined: 25-December 02

Posted 22 February 2003 - 01:11 PM

Hi

eMule have sometimes problems connecting to some irc servers. This will fix it:

Replace:
 if( rawMessage.Left(6) == "PING :" ){
  ircsocket->SendString( "PONG " + rawMessage.Right(8) );
  m_pwndIRC->AddStatus(  "PING?/PONG" );
  return;
	}

in IrcMain.cpp

with:
 if( rawMessage.Left(6) == "PING :" ){
  ircsocket->SendString( "PONG " + rawMessage.Right(rawMessage.GetLength()-6) );
  m_pwndIRC->AddStatus(  "PING?/PONG" );
  return;
	}

0

  • Member Options

Page 1 of 1

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users