Re: [Ekiga-devel-list] Ekiga call does not reach established state



El día Saturday, May 17, 2008 a las 05:46:49PM +0200, Matthias Apitz escribió:

> I removed the old user-config with the tool ekiga-config-tool and
> started ekiga; it made me running though the config assistant and then
> it crashes with:
> 
> $ ekiga
> Assertion failed: (client), function avahi_entry_group_new, file
> entrygroup.c, line 110.
> Abort trap: 6 (core dumped)

The trap occurs in entrygroup.c of /usr/local/lib/libavahi-client.so.3,
the lib belongs to the installed port-pkg:

$ pkg_info -W /usr/local/lib/libavahi-client.so.3
/usr/local/lib/libavahi-client.so.3 was installed by package avahi-app-0.6.22_1

I went to the source of the lib:

$ cd /usr/ports
$ make search name=avahi-app-0.6.22_1 | fgrep Path
Path:   /usr/ports/net/avahi-app

$ cd net/avahi-app/work/avahi-0.6.22/ 
$ find . -name entrygroup.c -print
./avahi-client/entrygroup.c

the code at line 110 reads:

AvahiEntryGroup* avahi_entry_group_new (AvahiClient *client,
AvahiEntryGroupCallback callback, void *userdata)
{
    AvahiEntryGroup *group = NULL;
    DBusMessage *message = NULL, *reply = NULL;
    DBusError error;
    char *path;
    int state;

    assert(client);
    ^^^^^^^^^^^^
        
    dbus_error_init (&error);

which means that 'client' must be zero;

I've modified
ekiga/lib/engine/components/avahi-publisher/avahi-publisher.cpp a bit to:

	...
    /* Allocate a new client */
    if (name) {
  
      fprintf(stderr, "name: %s\n", name);
      client = avahi_client_new (poll_api, (AvahiClientFlags) 0, avahi_client_callback, this, &error);
      if (client == NULL)
          fprintf(stderr, "avahi_client_new() returned NULL -- skipping avahi_entry_group_new\n");
      else
          group = avahi_entry_group_new (client, avahi_entry_group_callback, this);

this let 'ekiga' start up, it registers my account but I can't do any
call con success; attaching a d3 output;

	matthias

2008/05/18 10:25:59.429	  0:00.233	                  ekiga		Version 2.9.0 by  on Unix FreeBSD (7.0-RELEASE-i386) at 2008/5/18 10:25:59.428
2008/05/18 10:25:59.782	  0:00.586	                  ekiga	OpalMan	Registered endpoint with prefix h323
2008/05/18 10:25:59.782	  0:00.586	                  ekiga	OpalMan	Registered endpoint with prefix h323s
2008/05/18 10:25:59.782	  0:00.586	                  ekiga	OpalMan	Registered endpoint with prefix sip
2008/05/18 10:25:59.783	  0:00.587	                  ekiga	OpalMan	Registered endpoint with prefix sips
2008/05/18 10:25:59.784	  0:00.588	                  ekiga	OpalMan	Registered endpoint with prefix pc
2008/05/18 10:25:59.786	  0:00.590	                  ekiga	OSS	CollectSoundDevices FreeBSD devname set to devfs(5) name:/dev/dsp0
2008/05/18 10:25:59.789	  0:00.593	                  ekiga	OSS	CollectSoundDevices FreeBSD devname set to devfs(5) name:/dev/dsp0
2008/05/18 10:25:59.792	  0:00.596	                  ekiga	OSS	CollectSoundDevices FreeBSD devname set to devfs(5) name:/dev/dsp0
2008/05/18 10:25:59.795	  0:00.599	                  ekiga	OSS	CollectSoundDevices FreeBSD devname set to devfs(5) name:/dev/dsp0
2008/05/18 10:25:59.795	  0:00.599	                  ekiga	PCSS	Created PC sound system endpoint.
Players:
EKIGA
/dev/dsp0
Recorders:
EKIGA
/dev/dsp0

2008/05/18 10:25:59.796	  0:00.600	Opal Liste...0x29c03e00	Listen	Started listening thread on udp$*:5060
2008/05/18 10:25:59.835	  0:00.639	                  ekiga	Listen	Stopping listening thread on udp$*:5060
2008/05/18 10:25:59.835	  0:00.639	Opal Liste...0x29c03e00	Listen	UDP read error.
2008/05/18 10:25:59.856	  0:00.660	                  ekiga	PWLib	Destroyed thread 0x29c3d580 Opal Listener:0x29c03e00(id = 0)
2008/05/18 10:25:59.856	  0:00.660	                  ekiga	PWLib	Destroyed thread 0x29c3d510 Network Interface Monitor:0x29c03d00(id = 0)
2008/05/18 10:25:59.857	  0:00.661	Opal Liste...0x29c04d00	Listen	Started listening thread on udp$*:5060
2008/05/18 10:25:59.857	  0:00.661	                  ekiga	Listen	Stopping listening thread on udp$*:5060
2008/05/18 10:25:59.857	  0:00.661	Opal Liste...0x29c04d00	Listen	UDP read error.
2008/05/18 10:25:59.877	  0:00.681	                  ekiga	PWLib	Destroyed thread 0x29c3cd30 Opal Listener:0x29c04d00(id = 0)
2008/05/18 10:25:59.888	  0:00.692	                  ekiga	PWLib	Destroyed thread 0x29c3ccc0 Network Interface Monitor:0x29c04c00(id = 0)
2008/05/18 10:25:59.889	  0:00.693	Opal Liste...0x29c03e00	Listen	Started listening thread on udp$*:5060
2008/05/18 10:26:00.048	  0:00.852	                  ekiga	Ekiga version 2.9.0
2008/05/18 10:26:00.048	  0:00.852	                  ekiga	OPAL version 3.3.0
2008/05/18 10:26:00.048	  0:00.852	                  ekiga	PTLIB version 2.3.0
2008/05/18 10:26:00.048	  0:00.852	                  ekiga	GNOME support disabled
2008/05/18 10:26:00.048	  0:00.852	                  ekiga	Accelerated rendering support disabled
2008/05/18 10:26:00.048	  0:00.852	                  ekiga	DBUS support disabled
2008/05/18 10:26:00.048	  0:00.852	                  ekiga	GConf support enabled
2008/05/18 10:26:00.048	  0:00.852	                  ekiga	ESound support disabled
2008/05/18 10:26:00.255	  0:01.059	Opal Liste...0x29c03e00	OpalUDP	Binding to interface: 192.168.2.3:5060
2008/05/18 10:26:00.255	  0:01.059	Opal Liste...0x29c03e00	SIP	Malformed request received on udp$194.39.182.230:3479<if=udp$192.168.2.3:5060>
2008/05/18 10:26:00.256	  0:01.060	Opal Liste...0x29c03e00	Opal	Illegal IP transport address: "udp$:5060"
2008/05/18 10:26:00.256	  0:01.060	Opal Liste...0x29c03e00	SIP	Adjusting transport remote address to udp$:5060
2008/05/18 10:26:00.256	  0:01.060	Opal Liste...0x29c03e00	Opal	Illegal IP transport address: "udp$:5060"
2008/05/18 10:26:00.256	  0:01.060	Opal Liste...0x29c03e00	SIP	Sending PDU 400 BadRequest (202 bytes) to: rem=udp$194.39.182.230:3479,local=udp$192.168.2.3:5060,if=192.168.2.3%iwi0
2008/05/18 10:26:00.256	  0:01.060	Opal Liste...0x29c03e00	Opal	Transport clean up on termination
2008/05/18 10:26:01.254	  0:02.058	Opal Liste...0x29c03e00	OpalUDP	Binding to interface: 192.168.2.3:5060
2008/05/18 10:26:01.255	  0:02.059	Opal Liste...0x29c03e00	SIP	Malformed request received on udp$194.39.182.230:3479<if=udp$192.168.2.3:5060>
2008/05/18 10:26:01.255	  0:02.059	Opal Liste...0x29c03e00	Opal	Illegal IP transport address: "udp$:5060"
2008/05/18 10:26:01.255	  0:02.059	Opal Liste...0x29c03e00	SIP	Adjusting transport remote address to udp$:5060
2008/05/18 10:26:01.255	  0:02.059	Opal Liste...0x29c03e00	Opal	Illegal IP transport address: "udp$:5060"
2008/05/18 10:26:01.255	  0:02.059	Opal Liste...0x29c03e00	SIP	Sending PDU 400 BadRequest (202 bytes) to: rem=udp$194.39.182.230:3479,local=udp$192.168.2.3:5060,if=192.168.2.3%iwi0
2008/05/18 10:26:01.256	  0:02.060	Opal Liste...0x29c03e00	Opal	Transport clean up on termination
2008/05/18 10:26:02.254	  0:03.058	Opal Liste...0x29c03e00	OpalUDP	Binding to interface: 192.168.2.3:5060
2008/05/18 10:26:02.254	  0:03.058	Opal Liste...0x29c03e00	SIP	Malformed request received on udp$194.39.182.230:3479<if=udp$192.168.2.3:5060>
2008/05/18 10:26:02.255	  0:03.059	Opal Liste...0x29c03e00	Opal	Illegal IP transport address: "udp$:5060"
2008/05/18 10:26:02.255	  0:03.059	Opal Liste...0x29c03e00	SIP	Adjusting transport remote address to udp$:5060
2008/05/18 10:26:02.255	  0:03.059	Opal Liste...0x29c03e00	Opal	Illegal IP transport address: "udp$:5060"
2008/05/18 10:26:02.255	  0:03.059	Opal Liste...0x29c03e00	SIP	Sending PDU 400 BadRequest (202 bytes) to: rem=udp$194.39.182.230:3479,local=udp$192.168.2.3:5060,if=192.168.2.3%iwi0
2008/05/18 10:26:02.255	  0:03.059	Opal Liste...0x29c03e00	Opal	Transport clean up on termination
2008/05/18 10:26:03.259	  0:04.063	Opal Liste...0x29c03e00	OpalUDP	Binding to interface: 192.168.2.3:5060
2008/05/18 10:26:03.259	  0:04.063	Opal Liste...0x29c03e00	SIP	Malformed request received on udp$194.39.182.230:3479<if=udp$192.168.2.3:5060>
2008/05/18 10:26:03.260	  0:04.064	Opal Liste...0x29c03e00	Opal	Illegal IP transport address: "udp$:5060"
2008/05/18 10:26:03.260	  0:04.064	Opal Liste...0x29c03e00	SIP	Adjusting transport remote address to udp$:5060
2008/05/18 10:26:03.260	  0:04.064	Opal Liste...0x29c03e00	Opal	Illegal IP transport address: "udp$:5060"
2008/05/18 10:26:03.260	  0:04.064	Opal Liste...0x29c03e00	SIP	Sending PDU 400 BadRequest (202 bytes) to: rem=udp$194.39.182.230:3479,local=udp$192.168.2.3:5060,if=192.168.2.3%iwi0
2008/05/18 10:26:03.260	  0:04.064	Opal Liste...0x29c03e00	Opal	Transport clean up on termination
2008/05/18 10:26:04.258	  0:05.062	Opal Liste...0x29c03e00	OpalUDP	Binding to interface: 192.168.2.3:5060
2008/05/18 10:26:04.259	  0:05.063	Opal Liste...0x29c03e00	SIP	Malformed request received on udp$194.39.182.230:3479<if=udp$192.168.2.3:5060>
2008/05/18 10:26:04.259	  0:05.063	Opal Liste...0x29c03e00	Opal	Illegal IP transport address: "udp$:5060"
2008/05/18 10:26:04.259	  0:05.063	Opal Liste...0x29c03e00	SIP	Adjusting transport remote address to udp$:5060
2008/05/18 10:26:04.259	  0:05.063	Opal Liste...0x29c03e00	Opal	Illegal IP transport address: "udp$:5060"
2008/05/18 10:26:04.259	  0:05.063	Opal Liste...0x29c03e00	SIP	Sending PDU 400 BadRequest (202 bytes) to: rem=udp$194.39.182.230:3479,local=udp$192.168.2.3:5060,if=192.168.2.3%iwi0
2008/05/18 10:26:04.260	  0:05.064	Opal Liste...0x29c03e00	Opal	Transport clean up on termination
2008/05/18 10:26:05.322	  0:06.126	Opal Liste...0x29c03e00	OpalUDP	Binding to interface: 192.168.2.3:5060
2008/05/18 10:26:05.322	  0:06.126	Opal Liste...0x29c03e00	SIP	Malformed request received on udp$194.39.182.241:3479<if=udp$192.168.2.3:5060>
2008/05/18 10:26:05.323	  0:06.127	Opal Liste...0x29c03e00	Opal	Illegal IP transport address: "udp$:5060"
2008/05/18 10:26:05.323	  0:06.127	Opal Liste...0x29c03e00	SIP	Adjusting transport remote address to udp$:5060
2008/05/18 10:26:05.323	  0:06.127	Opal Liste...0x29c03e00	Opal	Illegal IP transport address: "udp$:5060"
2008/05/18 10:26:05.323	  0:06.127	Opal Liste...0x29c03e00	SIP	Sending PDU 400 BadRequest (202 bytes) to: rem=udp$194.39.182.241:3479,local=udp$192.168.2.3:5060,if=192.168.2.3%iwi0
2008/05/18 10:26:05.323	  0:06.128	Opal Liste...0x29c03e00	Opal	Transport clean up on termination
2008/05/18 10:26:06.323	  0:07.127	Opal Liste...0x29c03e00	OpalUDP	Binding to interface: 192.168.2.3:5060
2008/05/18 10:26:06.323	  0:07.127	Opal Liste...0x29c03e00	SIP	Malformed request received on udp$194.39.182.241:3479<if=udp$192.168.2.3:5060>
2008/05/18 10:26:06.323	  0:07.127	Opal Liste...0x29c03e00	Opal	Illegal IP transport address: "udp$:5060"
2008/05/18 10:26:06.324	  0:07.128	Opal Liste...0x29c03e00	SIP	Adjusting transport remote address to udp$:5060
2008/05/18 10:26:06.324	  0:07.128	Opal Liste...0x29c03e00	Opal	Illegal IP transport address: "udp$:5060"
2008/05/18 10:26:06.324	  0:07.128	Opal Liste...0x29c03e00	SIP	Sending PDU 400 BadRequest (202 bytes) to: rem=udp$194.39.182.241:3479,local=udp$192.168.2.3:5060,if=192.168.2.3%iwi0
2008/05/18 10:26:06.324	  0:07.128	Opal Liste...0x29c03e00	Opal	Transport clean up on termination
2008/05/18 10:26:07.323	  0:08.127	Opal Liste...0x29c03e00	OpalUDP	Binding to interface: 192.168.2.3:5060
2008/05/18 10:26:07.323	  0:08.127	Opal Liste...0x29c03e00	SIP	Malformed request received on udp$194.39.182.241:3479<if=udp$192.168.2.3:5060>
2008/05/18 10:26:07.324	  0:08.128	Opal Liste...0x29c03e00	Opal	Illegal IP transport address: "udp$:5060"
2008/05/18 10:26:07.324	  0:08.128	Opal Liste...0x29c03e00	SIP	Adjusting transport remote address to udp$:5060
2008/05/18 10:26:07.324	  0:08.128	Opal Liste...0x29c03e00	Opal	Illegal IP transport address: "udp$:5060"
2008/05/18 10:26:07.324	  0:08.128	Opal Liste...0x29c03e00	SIP	Sending PDU 400 BadRequest (202 bytes) to: rem=udp$194.39.182.241:3479,local=udp$192.168.2.3:5060,if=192.168.2.3%iwi0
2008/05/18 10:26:07.324	  0:08.128	Opal Liste...0x29c03e00	Opal	Transport clean up on termination
2008/05/18 10:26:08.326	  0:09.130	Opal Liste...0x29c03e00	OpalUDP	Binding to interface: 192.168.2.3:5060
2008/05/18 10:26:08.326	  0:09.130	Opal Liste...0x29c03e00	SIP	Malformed request received on udp$194.39.182.241:3479<if=udp$192.168.2.3:5060>
2008/05/18 10:26:08.327	  0:09.131	Opal Liste...0x29c03e00	Opal	Illegal IP transport address: "udp$:5060"
2008/05/18 10:26:08.327	  0:09.131	Opal Liste...0x29c03e00	SIP	Adjusting transport remote address to udp$:5060
2008/05/18 10:26:08.327	  0:09.131	Opal Liste...0x29c03e00	Opal	Illegal IP transport address: "udp$:5060"
2008/05/18 10:26:08.327	  0:09.131	Opal Liste...0x29c03e00	SIP	Sending PDU 400 BadRequest (202 bytes) to: rem=udp$194.39.182.241:3479,local=udp$192.168.2.3:5060,if=192.168.2.3%iwi0
2008/05/18 10:26:08.327	  0:09.131	Opal Liste...0x29c03e00	Opal	Transport clean up on termination
2008/05/18 10:26:09.326	  0:10.130	Opal Liste...0x29c03e00	OpalUDP	Binding to interface: 192.168.2.3:5060
2008/05/18 10:26:09.326	  0:10.130	Opal Liste...0x29c03e00	SIP	Malformed request received on udp$194.39.182.241:3479<if=udp$192.168.2.3:5060>
2008/05/18 10:26:09.326	  0:10.130	Opal Liste...0x29c03e00	Opal	Illegal IP transport address: "udp$:5060"
2008/05/18 10:26:09.327	  0:10.131	Opal Liste...0x29c03e00	SIP	Adjusting transport remote address to udp$:5060
2008/05/18 10:26:09.327	  0:10.131	Opal Liste...0x29c03e00	Opal	Illegal IP transport address: "udp$:5060"
2008/05/18 10:26:09.327	  0:10.131	Opal Liste...0x29c03e00	SIP	Sending PDU 400 BadRequest (202 bytes) to: rem=udp$194.39.182.241:3479,local=udp$192.168.2.3:5060,if=192.168.2.3%iwi0
2008/05/18 10:26:09.327	  0:10.131	Opal Liste...0x29c03e00	Opal	Transport clean up on termination
2008/05/18 10:26:10.327	  0:11.131	GMStunClient:0x29c04c00	OPAL	STUN server "stun.ekiga.net" replies Port Restricted NAT, external IP 88.217.93.84
2008/05/18 10:26:10.327	  0:11.131	GMStunClient:0x29c04c00	Listen	Stopping listening thread on udp$*:5060
2008/05/18 10:26:10.327	  0:11.131	Opal Liste...0x29c03e00	Listen	UDP read error.
2008/05/18 10:26:10.347	  0:11.151	GMStunClient:0x29c04c00	PWLib	Destroyed thread 0x29c3cd30 Opal Listener:0x29c03e00(id = 0)
2008/05/18 10:26:10.413	  0:11.217	Opal Liste...0x2bd44c00	Listen	Started listening thread on udp$*:5060
2008/05/18 10:26:10.413	  0:11.217	Opal Liste...0x2bd44d00	Listen	Started listening thread on tcp$*:5060
2008/05/18 10:26:10.459	  0:11.263	GMAccounts...0x29c03d00	OpalUDP	Binding to interface: 0.0.0.0:5060
2008/05/18 10:26:10.459	  0:11.263	GMAccounts...0x29c03d00	OpalUDP	Started connect to 86.64.162.35:5060
2008/05/18 10:26:10.460	  0:11.264	GMAccounts...0x29c03d00	SIP	Sending PDU REGISTER sip:ekiga.net (530 bytes) to: rem=udp$86.64.162.35:5060,local=udp$88.217.93.84:5063,if=192.168.2.3%iwi0
2008/05/18 10:26:10.542	  0:11.346	Opal Liste...0x2bd44c00	OpalUDP	Binding to interface: 88.217.93.84:5063
2008/05/18 10:26:10.542	  0:11.346	Opal Liste...0x2bd44c00	SIP	PDU 401  Unauthorized received: rem=udp$86.64.162.35:5060,local=udp$88.217.93.84:5063,if=192.168.2.3%iwi0
2008/05/18 10:26:10.543	  0:11.347	Opal Liste...0x2bd44c00	SIP	Transaction 1 REGISTER completed.
2008/05/18 10:26:10.543	  0:11.347	Opal Liste...0x2bd44c00	SIP	Received Authentication Required response
2008/05/18 10:26:10.543	  0:11.347	Opal Liste...0x2bd44c00	SIP	Authentication contains qop-options auth
2008/05/18 10:26:10.543	  0:11.347	Opal Liste...0x2bd44c00	OpalUDP	Setting interface to 192.168.2.3%iwi0
2008/05/18 10:26:10.544	  0:11.348	Opal Liste...0x2bd44c00	SIP	Adding authentication information
2008/05/18 10:26:10.544	  0:11.348	Opal Liste...0x2bd44c00	SIP	Sending PDU REGISTER sip:ekiga.net (795 bytes) to: rem=udp$86.64.162.35:5060,local=udp$88.217.93.84:5063,if=192.168.2.3%iwi0
2008/05/18 10:26:10.544	  0:11.348	Opal Liste...0x2bd44c00	Opal	Transport clean up on termination
2008/05/18 10:26:10.635	  0:11.439	Opal Liste...0x2bd44c00	OpalUDP	Binding to interface: 88.217.93.84:5063
2008/05/18 10:26:10.636	  0:11.440	Opal Liste...0x2bd44c00	SIP	PDU 200  OK received: rem=udp$86.64.162.35:5060,local=udp$88.217.93.84:5063,if=192.168.2.3%iwi0
2008/05/18 10:26:10.636	  0:11.440	Opal Liste...0x2bd44c00	SIP	Transaction 2 REGISTER completed.
2008/05/18 10:26:10.636	  0:11.440	Opal Liste...0x2bd44c00	SIP	Expiry time for REGISTER set to 3600 seconds.
2008/05/18 10:26:10.637	  0:11.441	Opal Liste...0x2bd44c00	OpalUDP	Binding to interface: 0.0.0.0:5060
2008/05/18 10:26:10.637	  0:11.441	Opal Liste...0x2bd44c00	OpalUDP	Started connect to 86.64.162.35:5060
2008/05/18 10:26:10.637	  0:11.441	Opal Liste...0x2bd44c00	SIP	Expiry time for SUBSCRIBE set to 3600 seconds.
2008/05/18 10:26:10.638	  0:11.442	Opal Liste...0x2bd44c00	SIP	Sending PDU SUBSCRIBE sip:gurucubano ekiga net (611 bytes) to: rem=udp$86.64.162.35:5060,local=udp$88.217.93.84:5063,if=192.168.2.3%iwi0
2008/05/18 10:26:10.638	  0:11.442	Opal Liste...0x2bd44c00	OpalUDP	Setting interface to 192.168.2.3%iwi0
2008/05/18 10:26:10.638	  0:11.442	Opal Liste...0x2bd44c00	Opal	Transport clean up on termination
2008/05/18 10:26:10.645	  0:11.449	                  ekiga	OpalUDP	Binding to interface: 0.0.0.0:5060
2008/05/18 10:26:10.645	  0:11.449	                  ekiga	OpalUDP	Started connect to 86.64.162.35:5060
2008/05/18 10:26:10.645	  0:11.449	                  ekiga	SIP	Expiry time for PUBLISH set to 500 seconds.
2008/05/18 10:26:10.646	  0:11.450	                  ekiga	SIP	Sending PDU PUBLISH sip:gurucubano ekiga net (916 bytes) to: rem=udp$86.64.162.35:5060,local=udp$88.217.93.84:5063,if=192.168.2.3%iwi0
name: Matthias Emilio Apitz
avahi_client_new() returned NULL -- skipping avahi_entry_group_new
2008/05/18 10:26:10.723	  0:11.527	Opal Liste...0x2bd44c00	OpalUDP	Binding to interface: 88.217.93.84:5063
2008/05/18 10:26:10.724	  0:11.528	Opal Liste...0x2bd44c00	SIP	PDU 489  Unsupported event package received: rem=udp$86.64.162.35:5060,local=udp$88.217.93.84:5063,if=192.168.2.3%iwi0
2008/05/18 10:26:10.724	  0:11.528	Opal Liste...0x2bd44c00	SIP	Transaction 1 SUBSCRIBE completed.
2008/05/18 10:26:10.724	  0:11.528	Opal Liste...0x2bd44c00	Opal	Transport clean up on termination
2008/05/18 10:26:10.753	  0:11.557	Opal Liste...0x2bd44c00	OpalUDP	Binding to interface: 88.217.93.84:5063
2008/05/18 10:26:10.753	  0:11.557	Opal Liste...0x2bd44c00	SIP	PDU 200  OK received: rem=udp$86.64.162.35:5060,local=udp$88.217.93.84:5063,if=192.168.2.3%iwi0
2008/05/18 10:26:10.753	  0:11.558	Opal Liste...0x2bd44c00	SIP	Transaction 3 PUBLISH completed.
2008/05/18 10:26:10.754	  0:11.558	Opal Liste...0x2bd44c00	SIP	Expiry time for PUBLISH set to 500 seconds.
2008/05/18 10:26:10.754	  0:11.558	Opal Liste...0x2bd44c00	OpalUDP	Setting interface to 192.168.2.3%iwi0
2008/05/18 10:26:10.754	  0:11.558	Opal Liste...0x2bd44c00	Opal	Transport clean up on termination
2008/05/18 10:26:11.544	  0:12.348	 Housekeeper:0x29c03c00	SIP	Set state Terminated_Success for transaction 1 REGISTER
2008/05/18 10:26:11.640	  0:12.444	 Housekeeper:0x29c03c00	SIP	Set state Terminated_Success for transaction 2 REGISTER
2008/05/18 10:26:11.725	  0:12.529	 Housekeeper:0x29c03c00	SIP	Set state Terminated_Success for transaction 1 SUBSCRIBE
2008/05/18 10:26:11.756	  0:12.560	 Housekeeper:0x29c03c00	SIP	Set state Terminated_Success for transaction 3 PUBLISH
2008/05/18 10:26:25.066	  0:25.870	      dialer:0x2bde5800	OpalMan	Set up call from pc:* to sip:500 ekiga net
2008/05/18 10:26:25.066	  0:25.870	      dialer:0x2bde5800	Call	Created Call[kedb265d71]
2008/05/18 10:26:25.066	  0:25.870	      dialer:0x2bde5800	OpalMan	Set up connection to "pc:*"
2008/05/18 10:26:25.069	  0:25.873	      dialer:0x2bde5800	OSS	CollectSoundDevices FreeBSD devname set to devfs(5) name:/dev/dsp0
2008/05/18 10:26:25.072	  0:25.876	      dialer:0x2bde5800	OSS	CollectSoundDevices FreeBSD devname set to devfs(5) name:/dev/dsp0
2008/05/18 10:26:25.072	  0:25.876	      dialer:0x2bde5800	OpalCon	Created connection Call[kedb265d71]-EP<pc>[1]
2008/05/18 10:26:25.072	  0:25.876	      dialer:0x2bde5800	OpalMan	On incoming connection Call[kedb265d71]-EP<pc>[1]
2008/05/18 10:26:25.072	  0:25.876	      dialer:0x2bde5800	Call	GetOtherPartyConnection Call[kedb265d71]-EP<pc>[1]
2008/05/18 10:26:25.072	  0:25.876	      dialer:0x2bde5800	OpalMan	Set up connection to "sip:500 ekiga net"
2008/05/18 10:26:25.073	  0:25.877	      dialer:0x2bde5800	OpalCon	Created connection Call[kedb265d71]-EP<sip>[eeb0d1c5-2123-dd11-9e28-a81e424a5f90 rebelion Sisis de]
2008/05/18 10:26:25.073	  0:25.877	      dialer:0x2bde5800	PCSS	Outgoing call routed to sip:500 ekiga net for Call[kedb265d71]-EP<pc>[1]
2008/05/18 10:26:25.073	  0:25.877	      dialer:0x2bde5800	Call	OnSetUp Call[kedb265d71]-EP<pc>[1]
2008/05/18 10:26:25.073	  0:25.877	      dialer:0x2bde5800	SIP	SetUpConnection: sip:500 ekiga net
2008/05/18 10:26:25.073	  0:25.877	      dialer:0x2bde5800	OpalCon	SetPhase from UninitialisedPhase to SetUpPhase for Call[kedb265d71]-EP<sip>[eeb0d1c5-2123-dd11-9e28-a81e424a5f90 rebelion Sisis de]
2008/05/18 10:26:25.169	  0:25.973	      dialer:0x2bde5800	OpalUDP	Binding to interface: 0.0.0.0:5060
2008/05/18 10:26:25.169	  0:25.973	      dialer:0x2bde5800	OpalUDP	Started connect to 86.64.162.35:5060
2008/05/18 10:26:25.176	  0:25.980	      dialer:0x2bde5800	SIP	Offering media type audio in SDP with formats
H.264,theora,H.261,H.261-CIF,H.261-QCIF,GSM-06.10
2008/05/18 10:26:25.176	  0:25.980	      dialer:0x2bde5800	Call	IsMediaBypassPossible Call[kedb265d71]-EP<sip>[eeb0d1c5-2123-dd11-9e28-a81e424a5f90 rebelion Sisis de] session 1
2008/05/18 10:26:25.176	  0:25.980	      dialer:0x2bde5800	OpalMan	IsMediaBypassPossible: session 1
2008/05/18 10:26:25.176	  0:25.980	      dialer:0x2bde5800	RTP	Cannot find session 1
2008/05/18 10:26:25.177	  0:25.981	      dialer:0x2bde5800	OpalCon	No ports available for RTP session 1 for Call[kedb265d71]-EP<sip>[eeb0d1c5-2123-dd11-9e28-a81e424a5f90 rebelion Sisis de]
2008/05/18 10:26:25.177	  0:25.981	      dialer:0x2bde5800	RTP_UDP	Session 1, Shutting down read.
2008/05/18 10:26:25.177	  0:25.981	      dialer:0x2bde5800	RTP_UDP	Session 1, Shutting down write.
2008/05/18 10:26:25.178	  0:25.982	      dialer:0x2bde5800	SIP	Could not create session id 1, released Call[kedb265d71]-EP<sip>[eeb0d1c5-2123-dd11-9e28-a81e424a5f90 rebelion Sisis de]
2008/05/18 10:26:25.178	  0:25.982	      dialer:0x2bde5800	OpalCon	SetPhase from SetUpPhase to ReleasingPhase for Call[kedb265d71]-EP<sip>[eeb0d1c5-2123-dd11-9e28-a81e424a5f90 rebelion Sisis de]
2008/05/18 10:26:25.178	  0:25.982	      dialer:0x2bde5800	OpalCon	Releasing Call[kedb265d71]-EP<sip>[eeb0d1c5-2123-dd11-9e28-a81e424a5f90 rebelion Sisis de]
2008/05/18 10:26:25.178	  0:25.982	      dialer:0x2bde5800	OpalCon	Call end reason for Call[kedb265d71]-EP<sip>[eeb0d1c5-2123-dd11-9e28-a81e424a5f90 rebelion Sisis de] set to EndedByTransportFail
2008/05/18 10:26:25.184	  0:25.988	      dialer:0x2bde5800	SIP	Offering media type video in SDP with formats
H.264,theora,H.261,H.261-CIF,H.261-QCIF,GSM-06.10
2008/05/18 10:26:25.184	  0:25.988	      dialer:0x2bde5800	Call	IsMediaBypassPossible Call[kedb265d71]-EP<sip>[eeb0d1c5-2123-dd11-9e28-a81e424a5f90 rebelion Sisis de] session 1
2008/05/18 10:26:25.184	  0:25.988	      dialer:0x2bde5800	OpalMan	IsMediaBypassPossible: session 1
2008/05/18 10:26:25.184	  0:25.988	      dialer:0x2bde5800	RTP	Cannot find session 1
2008/05/18 10:26:25.185	  0:25.989	      dialer:0x2bde5800	OpalCon	No ports available for RTP session 1 for Call[kedb265d71]-EP<sip>[eeb0d1c5-2123-dd11-9e28-a81e424a5f90 rebelion Sisis de]
2008/05/18 10:26:25.185	  0:25.989	      dialer:0x2bde5800	RTP_UDP	Session 1, Shutting down read.
2008/05/18 10:26:25.185	  0:25.989	      dialer:0x2bde5800	RTP_UDP	Session 1, Shutting down write.
2008/05/18 10:26:25.185	  0:25.989	   OnRelease:0x2bde5f00	SIP	OnReleased: Call[kedb265d71]-EP<sip>[eeb0d1c5-2123-dd11-9e28-a81e424a5f90 rebelion Sisis de], phase = ReleasingPhase
2008/05/18 10:26:25.185	  0:25.989	   OnRelease:0x2bde5f00	OpalCon	SetPhase from ReleasingPhase to ReleasingPhase for Call[kedb265d71]-EP<sip>[eeb0d1c5-2123-dd11-9e28-a81e424a5f90 rebelion Sisis de]
2008/05/18 10:26:25.185	  0:25.989	   OnRelease:0x2bde5f00	OpalCon	Media streams closed.
2008/05/18 10:26:25.185	  0:25.989	   OnRelease:0x2bde5f00	OpalCon	SetPhase from ReleasingPhase to ReleasedPhase for Call[kedb265d71]-EP<sip>[eeb0d1c5-2123-dd11-9e28-a81e424a5f90 rebelion Sisis de]
2008/05/18 10:26:25.185	  0:25.989	   OnRelease:0x2bde5f00	OpalCon	OnReleased Call[kedb265d71]-EP<sip>[eeb0d1c5-2123-dd11-9e28-a81e424a5f90 rebelion Sisis de]
2008/05/18 10:26:25.185	  0:25.989	   OnRelease:0x2bde5f00	OpalCon	Media streams closed.
2008/05/18 10:26:25.185	  0:25.990	   OnRelease:0x2bde5f00	GMSIPEndpoint	 SIP connection released
2008/05/18 10:26:25.186	  0:25.990	   OnRelease:0x2bde5f00	OpalMan	OnReleased Call[kedb265d71]-EP<sip>[eeb0d1c5-2123-dd11-9e28-a81e424a5f90 rebelion Sisis de]
2008/05/18 10:26:25.186	  0:25.990	   OnRelease:0x2bde5f00	Call	OnReleased Call[kedb265d71]-EP<sip>[eeb0d1c5-2123-dd11-9e28-a81e424a5f90 rebelion Sisis de]
2008/05/18 10:26:25.186	  0:25.990	   OnRelease:0x2bde5f00	OpalCon	SetPhase from SetUpPhase to ReleasingPhase for Call[kedb265d71]-EP<pc>[1]
2008/05/18 10:26:25.186	  0:25.990	      dialer:0x2bde5800	SIP	Could not create session id 1, released Call[kedb265d71]-EP<sip>[eeb0d1c5-2123-dd11-9e28-a81e424a5f90 rebelion Sisis de]
2008/05/18 10:26:25.186	  0:25.990	      dialer:0x2bde5800	OpalCon	Already released Call[kedb265d71]-EP<sip>[eeb0d1c5-2123-dd11-9e28-a81e424a5f90 rebelion Sisis de]
2008/05/18 10:26:25.186	  0:25.990	      dialer:0x2bde5800	SIP	Creating INVITE request
2008/05/18 10:26:25.186	  0:25.990	      dialer:0x2bde5800	SIP	Aborting INVITE transaction since connection is in releasing phase
2008/05/18 10:26:25.186	  0:25.990	      dialer:0x2bde5800	SIP	Destroying transaction 1 INVITE which is not yet terminated.
2008/05/18 10:26:25.186	  0:25.990	      dialer:0x2bde5800	SIP	Could not write to sip:500 ekiga net - 
2008/05/18 10:26:25.186	  0:25.990	      dialer:0x2bde5800	OpalCon	Already released Call[kedb265d71]-EP<sip>[eeb0d1c5-2123-dd11-9e28-a81e424a5f90 rebelion Sisis de]
2008/05/18 10:26:25.186	  0:25.990	      dialer:0x2bde5800	OpalCon	Already released Call[kedb265d71]-EP<pc>[1]
2008/05/18 10:26:25.186	  0:25.990	      dialer:0x2bde5800	Call	Clearing Call[kedb265d71] reason=EndedByTemporaryFailure
2008/05/18 10:26:25.187	  0:25.991	    ThreadID:0x2bde5800	PWLib	Destroyed thread 0x2bd41780 dialer:0x2bde5800(id = 0)
2008/05/18 10:26:25.187	  0:25.991	   OnRelease:0x2bde5f00	OpalCon	Releasing Call[kedb265d71]-EP<pc>[1]
2008/05/18 10:26:25.187	  0:25.991	   OnRelease:0x2bde5f00	OpalCon	Call end reason for Call[kedb265d71]-EP<pc>[1] set to EndedByTransportFail
2008/05/18 10:26:25.187	  0:25.991	   OnRelease:0x2bde5f00	Opal	Transport clean up on termination
2008/05/18 10:26:25.187	  0:25.991	    ThreadID:0x2bde5f00	PWLib	Destroyed thread 0x2bd417f0 OnRelease:0x2bde5f00(id = 0)
2008/05/18 10:26:25.187	  0:25.991	   OnRelease:0x2bde5b00	OpalCon	OnReleased Call[kedb265d71]-EP<pc>[1]
2008/05/18 10:26:25.187	  0:25.991	   OnRelease:0x2bde5b00	OpalCon	Media streams closed.
2008/05/18 10:26:25.187	  0:25.991	   OnRelease:0x2bde5b00	OpalMan	OnReleased Call[kedb265d71]-EP<pc>[1]
2008/05/18 10:26:25.187	  0:25.991	   OnRelease:0x2bde5b00	Call	OnReleased Call[kedb265d71]-EP<pc>[1]
2008/05/18 10:26:25.187	  0:25.991	   OnRelease:0x2bde5b00	OpalMan	OnClearedCall Call[kedb265d71] from "pc:guru" to "sip:500 ekiga net"
2008/05/18 10:26:25.187	  0:25.991	    ThreadID:0x2bde5b00	PWLib	Destroyed thread 0x2bd41780 OnRelease:0x2bde5b00(id = 0)
2008/05/18 10:26:25.821	  0:26.625	Opal Garbage:0x29c03b00	Opal	Transport clean up on termination
2008/05/18 10:26:25.821	  0:26.625	Opal Garbage:0x29c03b00	OpalCon	Connection Call[kedb265d71]-EP<sip>[eeb0d1c5-2123-dd11-9e28-a81e424a5f90 rebelion Sisis de] destroyed.
2008/05/18 10:26:25.822	  0:26.626	Opal Garbage:0x29c03b00	OpalCon	Connection Call[kedb265d71]-EP<pc>[1] destroyed.
2008/05/18 10:26:26.822	  0:27.626	Opal Garbage:0x29c03b00	Call	Call[kedb265d71] destroyed.


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]