[JDEV] jserver and etherxd
Koichi Moriyama
morimori at cc.gatech.edu
Sun Aug 27 02:09:49 CDT 2000
Thank you very much for your supporting me - all of your comments and
efforts are really appreciated.
Although I tried to put the IP address to the <jabber> element as an
attribute (like the sample), the problem cannot be solved.
I'm not sure what stands for the "NIC"; but, actually since the demo
environment has only a Linux machine and some devices, there is no DNS
server - just /etc/hosts (or ip address) are being used. I made sure
that telnet and some other IP base application and daemons run on the
environment. (Again, a jserver on my Linux box works when the box
connects to the Internet.)
Although I tried to see what happens in pth_connect_ev() of pth_high.c,
I've not figured out what does happen there... (What I got is pth_sc()
gives -1 (error) with an errno other than EINTR, and it pth_connect_ev()
gives the errno from the 414 line of pth_high.c.)
Let me attach the jserver.xml and log.txt.
--
Koichi Moriyama (morimori at cc.gatech.edu)
From: Thomas Muldowney <temas at box5.net>
Subject: Re: [JDEV] jserver and etherxd
Date: Sun, 27 Aug 2000 00:59:44 -0600
> I would need to see a few things to know what's going on. Mostly I would like
> to see your jserver.xml. I would bet that your default name is nothing
> something that is resolving. Another possibility is it can't bind to the NIC
> for some odd reason. Try specifying the IP on the <jabber>5222</jabber> line,
> there is an example of this in the jserver.xml. Otherwise, sending your
> jserver.xml and debug output again would be great.
>
> --temas
>
> On Sun, Aug 27, 2000 at 12:11:53AM -0400, Koichi Moriyama wrote:
> > From: Koichi Moriyama <morimori at cc.gatech.edu>
> > Subject: Re: [JDEV] jserver and etherxd
> > Date: Sat, 26 Aug 2000 22:14:59 -0400 (EDT)
> >
> > > Sat Aug 26 20:58:30 2000 debug/tstream.c:335 tstream_connect: ADNS[127.0.0.1:5269]
> > > Sat Aug 26 20:58:30 2000 debug/tstream.c:488 tstream_socket 5269 127.0.0.1
> >
> > Here, in _tstream_socket() of tstream.c:488, pth_connect_ev() gives an
> > error since it cannot establish a connection for something but I don't
> > know for what it is...
> >
> >
> > > Sat Aug 26 20:58:30 2000 debug/tstream.c:459 tstream_cleanup
> > > Sat Aug 26 20:58:30 2000 debug/xmlstream.c:260 xmlstream_error
> > > Sat Aug 26 20:58:30 2000 debug/xmlstream.c:260 xmlstream_error
> > > Sat Aug 26 20:58:34 2000 error/etherxs Failed to establish communication with etherxd
> > > Terminated
> >
> > Can anyone guess what is wrong ? (Please do not say jserver should
> > run in a networked-environment.)
> >
> > In order to have an isolated network, I just changed a configuration
> > on the Linux box not to refer DNS server; instead, I prepared some
> > entries in /etc/hosts. At least, telnet and some other deamons are
> > available from the other client devices... jsever, please run there !
> >
> > --
> > Koichi Moriyama (morimori at cc.gatech.edu)
> >
> > P.S. I'll do other things I should for a while, but I'll be back this
> > from tomorrow morning. Hope someone has a hint...
> >
> > _______________________________________________
> > jdev mailing list
> > jdev at jabber.org
> > http://mailman.jabber.org/listinfo/jdev
> >
-------------- next part --------------
<jserver>
This is the Jabber Server XML configuration file. Each section has it's own instructions.
Replace the default name with your primary server hostname:
<names>
<default>morimori4.cc.gt.atl.ga.us</default>
<!-- You may have alises for this server, these are NOT virtual hosts,
only use these for migrating from an old server name or for *receive only* on an alternate name
<alias>old.host.net</alias>
-->
</names>
This section provides the default bindings for IP addresses and ports used within the server.
If the service is not loaded/used, it's direcives here are ignored.
<listen>
<!-- <jabber>5222</jabber> -->
<jabber ip='199.77.128.133'>5222</jabber>
<ssl>5223</ssl>
<irc>6667</irc>
<http>5280</http>
<telnet>5228</telnet>
<!-- Specific IPs can also be used:
<jabber ip='12.34.56.78'>5222</jabber>
<irc ip='12.34.56.79'>6667</irc>
-->
</listen>
The session log, make sure the folder exists!
<log>
<!-- replace with <error>syslog</error> to log to syslog instead, remove to log to STDERR -->
<error>/usr/local/var/log/jserver.error</error>
<session>/usr/local/var/log/jserver.log</session>
<!-- This will log some basic tracking information about every packet of data (TONS!)
<packet>/usr/local/var/log/jserver_packet.log</packet>
-->
</log>
Data is stored on the filesystem for each user, make sure the folder exists!
<spool>/usr/local/var/jspool</spool>
Registration instructions and fields, remove to disallow registration:
<register>
<instructions>Choose a username and password to register with this server.</instructions>
<username/><password/><name/><email/>
</register>
Server info:
<info>
<name>Koichi Moriyama</name>
<description>A Jabber Server for the Reseach Project</description>
<url>http://morimori.cc.gt.atl.ga.us/</url>
</info>
A place to list the available agents for the users of this server:
<agents>
<!-- this is the default agent for the (temporary) master jabber user directory -->
<agent jid="users.jabber.org">
<name>Jabber User Directory</name>
<description>You may register and create a public searchable profile, and search for other registered Jabber users.</description>
<service>jud</service>
<register/>
<search/>
</agent>
<!-- these are just examples, you will receive instructions on what to place here when you install a real agent
<agent jid="aim.jabber.org">
<name>AIM Transport</name>
<description>This is the AIM Transport</description>
<transport>AIM/AOL ScreenName</transport>
<service>aim</service>
<register/>
</agent>
<agent jid="icq.jabber.org">
<name>ICQ Transport</name>
<description>This is the ICQ Transport</description>
<transport>ICQ#</transport>
<service>icq</service>
<register/>
</agent>
<agent jid="groups.jabber.org">
<name>GroupChat</name>
<description>You can create and participate in private chatrooms.</description>
<service>privatechat</service>
<groupchat/>
<register/>
</agent>
-->
</agents>
List of the default DSO loaded modules:
<dso>
<mod_time>/usr/local/lib/jabber/mod_time.so</mod_time>
<!-- <mod_version>/usr/local/lib/jabber/mod_version.so</mod_version> -->
<mod_echo>/usr/local/lib/jabber/mod_echo.so</mod_echo>
<svc_http>/usr/local/lib/jabber/svc_http.so</svc_http>
<svc_irc>/usr/local/lib/jabber/svc_irc.so</svc_irc>
</dso>
This is how the server connects to etherx:
<etherx>
<secret>test</secret>
<!-- only enable to use remote mode, you should know what you are doing!
<remote>12.34.56.78</remote>
-->
</etherx>
List of usernames with administrative access, these users will all receive messages and notices sent to 'hostname':
<!--
<admin>
<read>support</read>
<write>root</write>
</admin>
-->
</jserver>
-------------- next part --------------
Sun Aug 27 02:02:04 2000 debug/config.c:112 config query log/error
Sun Aug 27 02:02:04 2000 debug/log.c:70 log_init
Sun Aug 27 02:02:04 2000 warn/jserver Initializing Services
Sun Aug 27 02:02:04 2000 debug/unknown.c:39 THREAD:UNKNOWN starting
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 1
Sun Aug 27 02:02:04 2000 debug/offline.c:44 THREAD:OFFLINE starting
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 2
Sun Aug 27 02:02:04 2000 debug/server.c:40 THREAD:SERVER starting
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 3
Sun Aug 27 02:02:04 2000 debug/users.c:93 THREAD:USERS starting
Sun Aug 27 02:02:04 2000 debug/config.c:150 name 4 for (null)
Sun Aug 27 02:02:04 2000 debug/config.c:112 config query names/default
Sun Aug 27 02:02:04 2000 debug/config.c:112 config query names
Sun Aug 27 02:02:04 2000 debug/config.c:150 name 0 for morimori4.cc.gt.atl.ga.us
Sun Aug 27 02:02:04 2000 debug/config.c:150 name 3 for morimori4.cc.gt.atl.ga.us
Sun Aug 27 02:02:04 2000 debug/config.c:112 config query listen
Sun Aug 27 02:02:04 2000 debug/tlisten.c:32 tlisten_start: 199.77.128.133
Sun Aug 27 02:02:04 2000 debug/services.c:176 listening on 199.77.128.133:5222
Sun Aug 27 02:02:04 2000 debug/config.c:112 config query spool
Sun Aug 27 02:02:04 2000 debug/xdb.c:83 registered new xdb
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 0
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 0
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 4
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 4
Sun Aug 27 02:02:04 2000 debug/mod_register init
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 2
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 2
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 3
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 3
Sun Aug 27 02:02:04 2000 debug/mod_agents init
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 3
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 3
Sun Aug 27 02:02:04 2000 debug/mod_log.c:146 init
Sun Aug 27 02:02:04 2000 debug/config.c:112 config query log/session
Sun Aug 27 02:02:04 2000 debug/tstream.c:63 tstream_new
Sun Aug 27 02:02:04 2000 debug/config.c:112 config query log/packet
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 0
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 0
Sun Aug 27 02:02:04 2000 debug/mod_auth_sha1 init
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 2
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 2
Sun Aug 27 02:02:04 2000 debug/mod_auth init
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 2
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 2
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 0
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 0
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 2
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 2
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 3
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 3
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 3
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 3
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 3
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 3
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 0
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 0
Sun Aug 27 02:02:04 2000 debug/mod_offline init
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 2
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 2
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 0
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 0
Sun Aug 27 02:02:04 2000 debug/mod_presence init
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 4
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 4
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 0
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 0
Sun Aug 27 02:02:04 2000 debug/mod_etherx init
Sun Aug 27 02:02:04 2000 debug/config.c:112 config query etherx
Sun Aug 27 02:02:04 2000 debug/config.c:112 config query etherx/secret
Sun Aug 27 02:02:04 2000 debug/config.c:112 config query etherx/remote
Sun Aug 27 02:02:04 2000 debug/config.c:112 config query names
Sun Aug 27 02:02:04 2000 debug/ehandler.c:39 ehandler_new(morimori4.cc.gt.atl.ga.us,jabber:server)
Sun Aug 27 02:02:04 2000 debug/ehlist.c:26 list_add(morimori4.cc.gt.atl.ga.us)
Sun Aug 27 02:02:04 2000 debug/etherxs.c:94 attempting socket connect to (null) for transport morimori4.cc.gt.atl.ga.us
Sun Aug 27 02:02:04 2000 debug/xmlstream.c:26 xmlstream_connect
Sun Aug 27 02:02:04 2000 debug/tstream.c:63 tstream_new
Sun Aug 27 02:02:04 2000 debug/xmlstream.c:101 head: <?xml version='1.0'?><stream:stream xmlns:stream='http://etherx.jabber.org/streams' id='39A8AEDC' xmlns='jabber:server' from='morimori4.cc.gt.atl.ga.us' xmlns:etherx='http://etherx.jabber.org/' etherx:secret='eb2e6149fc5c98c184f34df5109359030a668824'>
Sun Aug 27 02:02:04 2000 debug/tstream.c:133 tstream_write_buffer
Sun Aug 27 02:02:04 2000 debug/ehandler.c:66 spun off connection attempt
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 4
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 4
Sun Aug 27 02:02:04 2000 debug/svc_client.c:293 svc_client: init()
Sun Aug 27 02:02:04 2000 debug/mod_dso.c:82 mod_dso
Sun Aug 27 02:02:04 2000 debug/config.c:112 config query dso
Sun Aug 27 02:02:04 2000 debug/mod_dso.c:43 mod_dso_load /usr/local/lib/jabber/mod_time.so
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 3
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 3
Sun Aug 27 02:02:04 2000 debug/mod_dso.c:43 mod_dso_load /usr/local/lib/jabber/mod_echo.so
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 3
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 3
Sun Aug 27 02:02:04 2000 debug/mod_dso.c:43 mod_dso_load /usr/local/lib/jabber/svc_http.so
Sun Aug 27 02:02:04 2000 debug/svc_http.c:246 svc_http startup
Sun Aug 27 02:02:04 2000 debug/config.c:112 config query listen
Sun Aug 27 02:02:04 2000 debug/tlisten.c:32 tlisten_start: (null)
Sun Aug 27 02:02:04 2000 error/jserver failed to listen on (null):5280
Sun Aug 27 02:02:04 2000 error/jserver Failed to listen for service http
Sun Aug 27 02:02:04 2000 debug/modules.c:83 mapi_register 3
Sun Aug 27 02:02:04 2000 debug/modules.c:43 mapi_master 3
Sun Aug 27 02:02:04 2000 debug/mod_dso.c:43 mod_dso_load /usr/local/lib/jabber/svc_irc.so
Sun Aug 27 02:02:04 2000 debug/svc_irc.c:260 svc_irc startup
Sun Aug 27 02:02:04 2000 debug/config.c:112 config query listen
Sun Aug 27 02:02:04 2000 debug/tlisten.c:32 tlisten_start: (null)
Sun Aug 27 02:02:04 2000 error/jserver failed to listen on (null):6667
Sun Aug 27 02:02:04 2000 error/jserver Failed to listen for service irc
Sun Aug 27 02:02:04 2000 debug/main.c:100 Main loop waiting
Sun Aug 27 02:02:04 2000 debug/tlisten.c:87 tlisten_main: startup
Sun Aug 27 02:02:04 2000 debug/tstream.c:212 tstream_main: startup
Sun Aug 27 02:02:04 2000 debug/tstream.c:212 tstream_main: startup
Sun Aug 27 02:02:04 2000 debug/xmlstream.c:222 xmlstream_main: startup
Sun Aug 27 02:02:04 2000 debug/tstream.c:335 tstream_connect: ADNS[127.0.0.1:5269]
Sun Aug 27 02:02:04 2000 debug/tstream.c:488 tstream_socket 5269 127.0.0.1
Sun Aug 27 02:02:04 2000 debug/tstream.c:459 tstream_cleanup
Sun Aug 27 02:02:04 2000 debug/xmlstream.c:260 xmlstream_error
Sun Aug 27 02:02:04 2000 debug/xmlstream.c:260 xmlstream_error
Sun Aug 27 02:02:04 2000 debug/etherxd.c:199 local etherxd attempting to start
Sun Aug 27 02:02:04 2000 debug/tlisten.c:32 tlisten_start: (null)
Sun Aug 27 02:02:04 2000 warn/etherxs Connection to etherxd failed 1 times, attempting to reconnect...
Sun Aug 27 02:02:04 2000 debug/etherxs.c:94 attempting socket connect to (null) for transport morimori4.cc.gt.atl.ga.us
Sun Aug 27 02:02:04 2000 debug/xmlstream.c:26 xmlstream_connect
Sun Aug 27 02:02:04 2000 debug/tstream.c:63 tstream_new
Sun Aug 27 02:02:04 2000 debug/xmlstream.c:101 head: <?xml version='1.0'?><stream:stream xmlns:stream='http://etherx.jabber.org/streams' id='39A8AEDC' xmlns='jabber:server' from='morimori4.cc.gt.atl.ga.us' xmlns:etherx='http://etherx.jabber.org/' etherx:secret='eb2e6149fc5c98c184f34df5109359030a668824'>
Sun Aug 27 02:02:04 2000 debug/tstream.c:133 tstream_write_buffer
Sun Aug 27 02:02:04 2000 debug/xmlstream.c:273 xmlstream_cleanup
Sun Aug 27 02:02:04 2000 debug/tstream.c:212 tstream_main: startup
Sun Aug 27 02:02:04 2000 debug/xmlstream.c:222 xmlstream_main: startup
Sun Aug 27 02:02:04 2000 debug/tstream.c:335 tstream_connect: ADNS[127.0.0.1:5269]
Sun Aug 27 02:02:04 2000 debug/tstream.c:488 tstream_socket 5269 127.0.0.1
Sun Aug 27 02:02:04 2000 debug/tstream.c:459 tstream_cleanup
Sun Aug 27 02:02:04 2000 debug/xmlstream.c:260 xmlstream_error
Sun Aug 27 02:02:04 2000 debug/xmlstream.c:260 xmlstream_error
Sun Aug 27 02:02:05 2000 debug/etherxd.c:199 local etherxd attempting to start
Sun Aug 27 02:02:05 2000 debug/tlisten.c:32 tlisten_start: (null)
Sun Aug 27 02:02:05 2000 warn/etherxs Connection to etherxd failed 2 times, attempting to reconnect...
Sun Aug 27 02:02:05 2000 debug/etherxs.c:94 attempting socket connect to (null) for transport morimori4.cc.gt.atl.ga.us
Sun Aug 27 02:02:05 2000 debug/xmlstream.c:26 xmlstream_connect
Sun Aug 27 02:02:05 2000 debug/tstream.c:63 tstream_new
Sun Aug 27 02:02:05 2000 debug/xmlstream.c:101 head: <?xml version='1.0'?><stream:stream xmlns:stream='http://etherx.jabber.org/streams' id='39A8AEDD' xmlns='jabber:server' from='morimori4.cc.gt.atl.ga.us' xmlns:etherx='http://etherx.jabber.org/' etherx:secret='6ee2ded3a95af45c21b36ee885080b2f0fe9df51'>
Sun Aug 27 02:02:05 2000 debug/tstream.c:133 tstream_write_buffer
Sun Aug 27 02:02:05 2000 debug/xmlstream.c:273 xmlstream_cleanup
Sun Aug 27 02:02:05 2000 debug/tstream.c:212 tstream_main: startup
Sun Aug 27 02:02:05 2000 debug/xmlstream.c:222 xmlstream_main: startup
Sun Aug 27 02:02:05 2000 debug/tstream.c:335 tstream_connect: ADNS[127.0.0.1:5269]
Sun Aug 27 02:02:05 2000 debug/tstream.c:488 tstream_socket 5269 127.0.0.1
Sun Aug 27 02:02:05 2000 debug/tstream.c:459 tstream_cleanup
Sun Aug 27 02:02:05 2000 debug/xmlstream.c:260 xmlstream_error
Sun Aug 27 02:02:05 2000 debug/xmlstream.c:260 xmlstream_error
Sun Aug 27 02:02:07 2000 debug/etherxd.c:199 local etherxd attempting to start
Sun Aug 27 02:02:07 2000 debug/tlisten.c:32 tlisten_start: (null)
Sun Aug 27 02:02:07 2000 warn/etherxs Connection to etherxd failed 3 times, attempting to reconnect...
Sun Aug 27 02:02:07 2000 debug/etherxs.c:94 attempting socket connect to (null) for transport morimori4.cc.gt.atl.ga.us
Sun Aug 27 02:02:07 2000 debug/xmlstream.c:26 xmlstream_connect
Sun Aug 27 02:02:07 2000 debug/tstream.c:63 tstream_new
Sun Aug 27 02:02:07 2000 debug/xmlstream.c:101 head: <?xml version='1.0'?><stream:stream xmlns:stream='http://etherx.jabber.org/streams' id='39A8AEDF' xmlns='jabber:server' from='morimori4.cc.gt.atl.ga.us' xmlns:etherx='http://etherx.jabber.org/' etherx:secret='17b68b247ef27d4225414cd0a324da4b903208f5'>
Sun Aug 27 02:02:07 2000 debug/tstream.c:133 tstream_write_buffer
Sun Aug 27 02:02:07 2000 debug/xmlstream.c:273 xmlstream_cleanup
Sun Aug 27 02:02:07 2000 debug/tstream.c:212 tstream_main: startup
Sun Aug 27 02:02:07 2000 debug/xmlstream.c:222 xmlstream_main: startup
Sun Aug 27 02:02:07 2000 debug/tstream.c:335 tstream_connect: ADNS[127.0.0.1:5269]
Sun Aug 27 02:02:07 2000 debug/tstream.c:488 tstream_socket 5269 127.0.0.1
Sun Aug 27 02:02:07 2000 debug/tstream.c:459 tstream_cleanup
Sun Aug 27 02:02:07 2000 debug/xmlstream.c:260 xmlstream_error
Sun Aug 27 02:02:07 2000 debug/xmlstream.c:260 xmlstream_error
Sun Aug 27 02:02:10 2000 debug/etherxd.c:199 local etherxd attempting to start
Sun Aug 27 02:02:10 2000 debug/tlisten.c:32 tlisten_start: (null)
Sun Aug 27 02:02:10 2000 warn/etherxs Connection to etherxd failed 4 times, attempting to reconnect...
Sun Aug 27 02:02:10 2000 debug/etherxs.c:94 attempting socket connect to (null) for transport morimori4.cc.gt.atl.ga.us
Sun Aug 27 02:02:10 2000 debug/xmlstream.c:26 xmlstream_connect
Sun Aug 27 02:02:10 2000 debug/tstream.c:63 tstream_new
Sun Aug 27 02:02:10 2000 debug/xmlstream.c:101 head: <?xml version='1.0'?><stream:stream xmlns:stream='http://etherx.jabber.org/streams' id='39A8AEE2' xmlns='jabber:server' from='morimori4.cc.gt.atl.ga.us' xmlns:etherx='http://etherx.jabber.org/' etherx:secret='eef34a584aa6cd73962c3a0c64f6a66348de90fd'>
Sun Aug 27 02:02:10 2000 debug/tstream.c:133 tstream_write_buffer
Sun Aug 27 02:02:10 2000 debug/xmlstream.c:273 xmlstream_cleanup
Sun Aug 27 02:02:10 2000 debug/tstream.c:212 tstream_main: startup
Sun Aug 27 02:02:10 2000 debug/xmlstream.c:222 xmlstream_main: startup
Sun Aug 27 02:02:10 2000 debug/tstream.c:335 tstream_connect: ADNS[127.0.0.1:5269]
Sun Aug 27 02:02:10 2000 debug/tstream.c:488 tstream_socket 5269 127.0.0.1
Sun Aug 27 02:02:10 2000 debug/tstream.c:459 tstream_cleanup
Sun Aug 27 02:02:10 2000 debug/xmlstream.c:260 xmlstream_error
Sun Aug 27 02:02:10 2000 debug/xmlstream.c:260 xmlstream_error
Sun Aug 27 02:02:14 2000 error/etherxs Failed to establish communication with etherxd
More information about the JDev
mailing list