You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
2008 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Kai P. <web...@po...> - 2020-03-24 17:16:48
|
Hi, I know this lib seems not to be actively developped anymore. I need some help with error codes: 2020-Mar-24 13:03:55 MSG: Lobby bot: IRC error 153. 2020-Mar-24 13:04:32 MSG: Lobby bot: IRC error 157. 2020-Mar-24 13:04:32 MSG: Admin bot: IRC error 157. 2020-Mar-24 17:42:25 MSG: Lobby bot: IRC error 157. 2020-Mar-24 17:42:25 MSG: Admin bot: IRC error 157. I already changed nicknames ... but our server does not connect regularly = like every 3rd or 4th server restart it works. Server also loses connection more often these days. Any idea or explanations about the codes? ... I did not code the server - so I hope you can help me with the meaning of the codes. Thx in advance. |
From: Christopher S. M. <br...@ma...> - 2008-01-04 17:48:32
|
Barna, Sorry for taking so utterly long to reply, but your patch has been =20 finally applied to the sources. Thanks for the fix to the pong =20 reply! I'd noticed the same problem, but it wasn't a critical error =20 with the networks we were working with. I've credited you with the =20 fix in our doc files, thanks again. Cheers! Sean On Apr 5, 2005, at 1:39 PM, Barna Farag=F3 wrote: > Hi, > I have problem with connecting to Unreal IRC server. I would like =20 > to suppose the following patch: > > Have a nice day, > Barna Farag=F3. > > Index: src/ircBasicCommands.cpp > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > RCS file: /cvsroot/libirc/libirc/src/ircBasicCommands.cpp,v > retrieving revision 1.17 > diff -u -r1.17 ircBasicCommands.cpp > --- src/ircBasicCommands.cpp 12 Mar 2005 22:47:35 -0000 1.17 > +++ src/ircBasicCommands.cpp 5 Apr 2005 17:03:15 -0000 > @@ -79,6 +79,7 @@ > { > IRCCommandINfo ircInfo; > ircInfo.command =3D eCMD_PONG; > + ircInfo.raw=3Dinfo.raw; > client.sendIRCCommand(eCMD_PONG,ircInfo); > return true; > } > @@ -108,8 +109,8 @@ > bool IRCPongCommand::send ( IRCClient &client, std::string &command, > BaseIRCCommandInfo &info ) > { > IRCCommandINfo &ircInfo =3D (IRCCommandINfo&)info; > - > - std::string commandLine; > + > + std::string commandLine=3Dinfo.raw.substr(5, info.raw.length()-5); > // PING > client.sendIRCCommandToServer(eCMD_PONG,commandLine); > return true; > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real =20 > users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_id=3D6595&alloc_id=3D14396&op=3Dclick > _______________________________________________ > Libirc-devel mailing list > Lib...@li... > https://lists.sourceforge.net/lists/listinfo/libirc-devel |
From: SourceForge.net <no...@so...> - 2007-12-03 15:18:57
|
Patches item #1843257, was opened at 2007-12-03 11:10 Message generated for change (Comment added) made by brlcad You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=314331&aid=1843257&group_id=14331 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Closed >Resolution: Accepted Priority: 5 Private: No Submitted By: pelya (pelya) >Assigned to: Sean Morrison (brlcad) Summary: MSVC 6 project files Initial Comment: Here are MSVC 6 project files and fixes to the code required by MSVC 6. ---------------------------------------------------------------------- >Comment By: Sean Morrison (brlcad) Date: 2007-12-03 15:18 Message: Logged In: YES user_id=785737 Originator: NO Pretty cool. Thanks for the fixes! They're applied to the sources in the Subversion repository. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=314331&aid=1843257&group_id=14331 |
From: SourceForge.net <no...@so...> - 2007-12-03 11:10:25
|
Patches item #1843257, was opened at 2007-12-03 13:10 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=314331&aid=1843257&group_id=14331 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: pelya (pelya) Assigned to: Nobody/Anonymous (nobody) Summary: MSVC 6 project files Initial Comment: Here are MSVC 6 project files and fixes to the code required by MSVC 6. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=314331&aid=1843257&group_id=14331 |
From: <bf...@li...> - 2005-04-05 17:37:28
|
Hi, I have problem with connecting to Unreal IRC server. I would like to suppose the following patch: Have a nice day, Barna Faragó. Index: src/ircBasicCommands.cpp =================================================================== RCS file: /cvsroot/libirc/libirc/src/ircBasicCommands.cpp,v retrieving revision 1.17 diff -u -r1.17 ircBasicCommands.cpp --- src/ircBasicCommands.cpp 12 Mar 2005 22:47:35 -0000 1.17 +++ src/ircBasicCommands.cpp 5 Apr 2005 17:03:15 -0000 @@ -79,6 +79,7 @@ { IRCCommandINfo ircInfo; ircInfo.command = eCMD_PONG; + ircInfo.raw=info.raw; client.sendIRCCommand(eCMD_PONG,ircInfo); return true; } @@ -108,8 +109,8 @@ bool IRCPongCommand::send ( IRCClient &client, std::string &command, BaseIRCCommandInfo &info ) { IRCCommandINfo &ircInfo = (IRCCommandINfo&)info; - - std::string commandLine; + + std::string commandLine=info.raw.substr(5, info.raw.length()-5); // PING client.sendIRCCommandToServer(eCMD_PONG,commandLine); return true; |