[JDEV] jserver stability problem
Rodolphe Duge de Bernonville
rod at idealx.com
Tue Sep 19 03:22:01 CDT 2000
Lars Hansson a écrit :
> Ok, here's the debug logfile (jserver.debug.log) and the jserver.xml file.
> I removed almost everything from the jserver.xml file and it still core
> dumped when I killed the client (JabberIM) without properly disconnecting
> (ie, I killed it from the taskmanager's process list).
>
> The box is a red hat 6.2 system and I compiled the jabber 1.0.1 source
> without any arguments to "configure" (ie, everything went to /usr/local)
>
> Cheers
> Lars
>
I have had the same problem, so maybe it can help you :
In libetherx/src/tstream.c : line 291 :
Replace :
/* print error if we weren't expecting to close */
if(ts->close == 0)
log_warn("etherx","error '%s' writing to socket '%s'",strerror(errno),
ts->host);
By:
/* print error if we weren't expecting to close */
if(ts->close == 0)
;
//log_warn("etherx","error '%s' writing to socket '%s'",strerror(errno),
ts->host);
You can eventually give another log message :)
but without strerro(errno).
More information about the JDev
mailing list