Sponsor: VoiceMeUp - Corporate & Wholesale VoIP Services

VoIP Mailing List Archives
Mailing list archives for the VoIP community
 SearchSearch 

[Freeswitch-users] Problem with mod_openzap.c and SS7boost


 
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users
View previous topic :: View next topic  
Author Message
helmut.kuper at ewetel.de
Guest





PostPosted: Tue Oct 28, 2008 4:40 am    Post subject: [Freeswitch-users] Problem with mod_openzap.c and SS7boost Reply with quote

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hello,

we use FS with mod_openzap to talk to a ss7boost server. we found that
when we cancel a call to PSTN befor media is established by FS the pstn
side won't be canceled as well. pstn side rings until timeout or voicebox.

I changed in mod_openzap.c in function "channel_on_hangup" line 446 form

if (tech_pvt->zchan->state != ZAP_CHANNEL_STATE_DOWN &&
tech_pvt->zchan->state != ZAP_CHANNEL_STATE_TERMINATING) {

to
if (tech_pvt->zchan->state != ZAP_CHANNEL_STATE_TERMINATING) {


That works so far.

regards
helmut
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkkG2+UACgkQ4tZeNddg3dzylACfXMJY/KU65+XTqqxUBYFmlK/2
lQcAn2CIsotR+cBW5R5S6YLyl9GXIt2K
=26vq
-----END PGP SIGNATURE-----

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
anthony.minessale at g...
Guest





PostPosted: Tue Oct 28, 2008 8:03 am    Post subject: [Freeswitch-users] Problem with mod_openzap.c and SS7boost Reply with quote

you forgot to say what line number and file that change was to.


On Tue, Oct 28, 2008 at 4:31 AM, Helmut Kuper <helmut.kuper@ewetel.de (helmut.kuper@ewetel.de)> wrote:
Quote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hello,

we use FS with mod_openzap to talk to a ss7boost server. we found that
when we cancel a call to PSTN befor media is established by FS the pstn
side won't be canceled as well. pstn side rings until timeout or voicebox.

I changed in mod_openzap.c in function "channel_on_hangup" line 446 form

if (tech_pvt->zchan->state != ZAP_CHANNEL_STATE_DOWN &&
tech_pvt->zchan->state != ZAP_CHANNEL_STATE_TERMINATING) {

to
if (tech_pvt->zchan->state != ZAP_CHANNEL_STATE_TERMINATING) {


That works so far.

regards
helmut
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkkG2+UACgkQ4tZeNddg3dzylACfXMJY/KU65+XTqqxUBYFmlK/2
lQcAn2CIsotR+cBW5R5S6YLyl9GXIt2K
=26vq
-----END PGP SIGNATURE-----

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400
Back to top
helmut.kuper at ewetel.de
Guest





PostPosted: Tue Oct 28, 2008 8:34 am    Post subject: [Freeswitch-users] Problem with mod_openzap.c and SS7boost Reply with quote

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi,

File: mod_openzap.c
Function: channel_on_hangup
Line: 446

openzap was downloaded from "http://svn.openzap.org/svn/openzap/trunk/"

kind regards
helmut


Anthony Minessale schrieb:
Quote:
you forgot to say what line number and file that change was to.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkkHEcMACgkQ4tZeNddg3dy7pQCfWkjTqNBBdOAGlmzMXGGlhJUs
6EQAn3ZeUT0f0E34YYum2T2LC8OoSRgo
=tY9s
-----END PGP SIGNATURE-----

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
anthony.minessale at g...
Guest





PostPosted: Tue Oct 28, 2008 10:06 am    Post subject: [Freeswitch-users] Problem with mod_openzap.c and SS7boost Reply with quote

Are you sure that even does anything to help?
It says there not to change state to hangup when state is down or terminating meaning it's already hanging up so how does removing the down do any good, the state change from down to hangup would be vetoed anyway.




On Tue, Oct 28, 2008 at 8:21 AM, Helmut Kuper <helmut.kuper@ewetel.de (helmut.kuper@ewetel.de)> wrote:
Quote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1


Hi,

File: mod_openzap.c
Function: channel_on_hangup
Line: 446

openzap was downloaded from "http://svn.openzap.org/svn/openzap/trunk/"

kind regards
helmut


Anthony Minessale schrieb:
Quote:
you forgot to say what line number and file that change was to.

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org


iEYEARECAAYFAkkHEcMACgkQ4tZeNddg3dy7pQCfWkjTqNBBdOAGlmzMXGGlhJUs
6EQAn3ZeUT0f0E34YYum2T2LC8OoSRgo
=tY9s

-----END PGP SIGNATURE-----

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org





--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400
Back to top
helmut.kuper at ewetel.de
Guest





PostPosted: Tue Oct 28, 2008 11:23 am    Post subject: [Freeswitch-users] Problem with mod_openzap.c and SS7boost Reply with quote

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi Anthony,

I'm not familar with mod_openzap code nor with ss7boost stuff. I'm not
sure if the hack introduce some bad side effects but I know it seems to
solve this special problem. I can reproduce it any time.

Problem was, that when I make a call into pstn and cancel it very
shortly ( 0.5 .. 1 second after putting the call to openzap) after that
the pstn side remains ringing until timout.

It seems to me that the case is not considered when pstn side is
initiating and zap state is still ZAP_CHANNEL_STATE_DOWN and call is
canceled.

When the problem occures the tech_pvt->zchan->state is
ZAP_CHANNEL_STATE_DOWN (0)



Here is FS debug log when the problem occurs:
Important part is marked with some '!'


2008-10-28 16:52:47 [DEBUG] switch_core_state_machine.c:144
switch_core_standard_on_execute()
sofia/softswitch_side/031152112850@sip1.ewetel.net Execute
bridge(OpenZAP/1/a/44180002850)
2008-10-28 16:52:47 [DEBUG] ozmod_ss7_boost.c:225
ss7_boost_channel_request() TX EVENT: CALL_START:(80) [w1g1] CSid=5
Seq=6 Cn=[hk] Cd=[44180002850] Ci=[31152112850]
2008-10-28 16:52:47 [DEBUG] sofia.c:2269 sofia_handle_sip_i_state()
Channel sofia/softswitch_side/031152112850@sip1.ewetel.net entering
state [terminated]
2008-10-28 16:52:47 [NOTICE] sofia.c:2765 sofia_handle_sip_i_state()
Hangup sofia/softswitch_side/031152112850@sip1.ewetel.net [CS_EXECUTE]
[ORIGINATOR_CANCEL]
2008-10-28 16:52:47 [DEBUG] switch_channel.c:1449
switch_channel_perform_hangup() Send signal
sofia/softswitch_side/031152112850@sip1.ewetel.net [KILL]
2008-10-28 16:52:47 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
sofia/softswitch_side/031152112850@sip1.ewetel.net [BREAK]
2008-10-28 16:52:48 [DEBUG] ozmod_ss7_boost.c:932 zap_ss7_boost_run() RX
EVENT (N): CALL_START_ACK:(81) [w1g30] Rc=0 CSid=5 Seq=8
2008-10-28 16:52:48 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-28 16:52:48 [DEBUG] ozmod_ss7_boost.c:296
handle_call_start_ack() Assign chan 1:29 (1:30) CSid=5
2008-10-28 16:52:48 [DEBUG] mod_openzap.c:340 tech_init() Set codec PCMA
20ms
2008-10-28 16:52:48 [DEBUG] mod_openzap.c:1020
channel_outgoing_channel() Connect outbound channel OpenZAP/1:29/44180002850
2008-10-28 16:52:48 [NOTICE] switch_channel.c:553
switch_channel_set_name() New Channel OpenZAP/1:29/44180002850
[c1e6d98e-6654-4d6c-8e1b-41a4b3a52d39]
2008-10-28 16:52:48 [DEBUG] mod_openzap.c:1029
channel_outgoing_channel() (OpenZAP/1:29/44180002850) State Change
CS_NEW -> CS_INIT
2008-10-28 16:52:48 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
OpenZAP/1:29/44180002850 [BREAK]
2008-10-28 16:52:48 [DEBUG] switch_ivr_originate.c:1598
switch_ivr_originate() Originate Cancelled by originator termination
Cause: 487 [ORIGINATOR_CANCEL]
2008-10-28 16:52:48 [NOTICE] switch_ivr_originate.c:1637
switch_ivr_originate() Hangup OpenZAP/1:29/44180002850 [CS_INIT]
[ORIGINATOR_CANCEL]
2008-10-28 16:52:48 [DEBUG] switch_channel.c:1449
switch_channel_perform_hangup() Send signal OpenZAP/1:29/44180002850 [KILL]
2008-10-28 16:52:48 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
OpenZAP/1:29/44180002850 [BREAK]
2008-10-28 16:52:48 [INFO] mod_dptools.c:1843 audio_bridge_function()
Originate Failed. Cause: ORIGINATOR_CANCEL
2008-10-28 16:52:48 [DEBUG] switch_core_state_machine.c:432
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net) State EXECUTE going
to sleep
2008-10-28 16:52:48 [DEBUG] switch_core_state_machine.c:367
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net) Running State
Change CS_HANGUP
2008-10-28 16:52:48 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net) State HANGUP
2008-10-28 16:52:48 [DEBUG] mod_sofia.c:276 sofia_on_hangup() Channel
sofia/softswitch_side/031152112850@sip1.ewetel.net hanging up, cause:
ORIGINATOR_CANCEL
2008-10-28 16:52:48 [DEBUG] switch_core_state_machine.c:46
switch_core_standard_on_hangup()
sofia/softswitch_side/031152112850@sip1.ewetel.net Standard HANGUP,
cause: ORIGINATOR_CANCEL
2008-10-28 16:52:48 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net) State HANGUP going
to sleep
2008-10-28 16:52:48 [DEBUG] switch_core_session.c:860
switch_core_session_thread() Session 8
(sofia/softswitch_side/031152112850@sip1.ewetel.net) Locked, Waiting on
external entities
2008-10-28 16:52:48 [NOTICE] switch_core_session.c:878
switch_core_session_thread() Session 8
(sofia/softswitch_side/031152112850@sip1.ewetel.net) Ended
2008-10-28 16:52:48 [NOTICE] switch_core_session.c:880
switch_core_session_thread() Close Channel
sofia/softswitch_side/031152112850@sip1.ewetel.net [CS_HANGUP]
2008-10-28 16:52:48 [DEBUG] switch_core_state_machine.c:367
switch_core_session_run() (OpenZAP/1:29/44180002850) Running State
Change CS_HANGUP
2008-10-28 16:52:48 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run() (OpenZAP/1:29/44180002850) State HANGUP

!!!!!!!!!!!!!!!!!!!!!!!!!

2008-10-28 16:52:48 [INFO] mod_openzap.c:446 channel_on_hangup()
ZAP-STATE is '0'
2008-10-28 16:52:48 [DEBUG] mod_openzap.c:474 channel_on_hangup()
OpenZAP/1:29/44180002850 CHANNEL HANGUP

!!!!!!!!!!!!!!!!!!!!!!!!!

2008-10-28 16:52:48 [DEBUG] switch_core_state_machine.c:46
switch_core_standard_on_hangup() OpenZAP/1:29/44180002850 Standard
HANGUP, cause: ORIGINATOR_CANCEL
2008-10-28 16:52:48 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run() (OpenZAP/1:29/44180002850) State HANGUP going
to sleep
2008-10-28 16:52:48 [DEBUG] switch_core_session.c:860
switch_core_session_thread() Session 9 (OpenZAP/1:29/44180002850)
Locked, Waiting on external entities
2008-10-28 16:52:48 [NOTICE] switch_core_session.c:878
switch_core_session_thread() Session 9 (OpenZAP/1:29/44180002850) Ended
2008-10-28 16:52:48 [NOTICE] switch_core_session.c:880
switch_core_session_thread() Close Channel OpenZAP/1:29/44180002850
[CS_HANGUP]
2008-10-28 16:52:48 [DEBUG] switch_core_codec.c:76
switch_core_session_set_read_codec() resetting to uninitilized codec,
setting to NULL
2008-10-28 16:52:50 [DEBUG] ozmod_ss7_boost.c:932 zap_ss7_boost_run() RX
EVENT (N): CALL_ANSWERED:(84) [w1g30] Rc=0 CSid=5 Seq=9
2008-10-28 16:52:50 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-28 16:53:07 [DEBUG] ozmod_ss7_boost.c:932 zap_ss7_boost_run() RX
EVENT (N): CALL_STOPPED:(85) [w1g31] Rc=16 CSid=4 Seq=10
2008-10-28 16:53:07 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-28 16:53:07 [DEBUG] ozmod_ss7_boost.c:408 handle_call_stop()
Changing state on 1:30 from DOWN to TERMINATING
2008-10-28 16:53:07 [DEBUG] ozmod_ss7_boost.c:644 state_advance() 1:30
STATE [TERMINATING]
2008-10-28 16:53:07 [DEBUG] mod_openzap.c:1437 on_clear_channel_signal()
got clear channel sig [STOP]
2008-10-28 16:53:07 [DEBUG] ozmod_ss7_boost.c:782 state_advance()
Changing state on 1:30 from TERMINATING to HANGUP_COMPLETE
2008-10-28 16:53:07 [DEBUG] ss7_boost_client.c:216 ss7bc_exec_command()
TX EVENT (N): CALL_STOPPED_ACK:(86) [w1g31] Rc=0 CSid=0 Seq=7
2008-10-28 16:53:07 [DEBUG] ozmod_ss7_boost.c:644 state_advance() 1:30
STATE [HANGUP_COMPLETE]
2008-10-28 16:53:07 [DEBUG] ozmod_ss7_boost.c:736 state_advance()
Changing state on 1:30 from HANGUP_COMPLETE to DOWN
2008-10-28 16:53:07 [DEBUG] ozmod_ss7_boost.c:644 state_advance() 1:30
STATE [DOWN]
2008-10-28 16:53:07 [DEBUG] zap_io.c:1123 zap_channel_done() channel
done 1:30
2008-10-28 16:53:14 [DEBUG] ozmod_ss7_boost.c:932 zap_ss7_boost_run() RX
EVENT (N): CALL_STOPPED:(85) [w1g30] Rc=16 CSid=5 Seq=11
2008-10-28 16:53:14 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-28 16:53:14 [DEBUG] ozmod_ss7_boost.c:408 handle_call_stop()
Changing state on 1:29 from DOWN to TERMINATING
2008-10-28 16:53:14 [DEBUG] ozmod_ss7_boost.c:644 state_advance() 1:29
STATE [TERMINATING]
2008-10-28 16:53:14 [DEBUG] mod_openzap.c:1437 on_clear_channel_signal()
got clear channel sig [STOP]
2008-10-28 16:53:14 [DEBUG] ozmod_ss7_boost.c:782 state_advance()
Changing state on 1:29 from TERMINATING to HANGUP_COMPLETE
2008-10-28 16:53:14 [DEBUG] ss7_boost_client.c:216 ss7bc_exec_command()
TX EVENT (N): CALL_STOPPED_ACK:(86) [w1g30] Rc=0 CSid=0 Seq=8
2008-10-28 16:53:14 [DEBUG] ozmod_ss7_boost.c:644 state_advance() 1:29
STATE [HANGUP_COMPLETE]
2008-10-28 16:53:14 [DEBUG] ozmod_ss7_boost.c:736 state_advance()
Changing state on 1:29 from HANGUP_COMPLETE to DOWN
2008-10-28 16:53:14 [DEBUG] ozmod_ss7_boost.c:644 state_advance() 1:29
STATE [DOWN]
2008-10-28 16:53:14 [DEBUG] zap_io.c:1123 zap_channel_done() channel
done 1:29




And here is the log, when my little hack is applied:
Important part is marked with some '!'

2008-10-28 16:55:38 [DEBUG] switch_core_state_machine.c:144
switch_core_standard_on_execute()
sofia/softswitch_side/031152112850@sip1.ewetel.net Execute
bridge(OpenZAP/1/a/44180002850)
2008-10-28 16:55:38 [DEBUG] ozmod_ss7_boost.c:225
ss7_boost_channel_request() TX EVENT: CALL_START:(80) [w1g1] CSid=1
Seq=0 Cn=[hk] Cd=[44180002850] Ci=[31152112850]
2008-10-28 16:55:39 [DEBUG] sofia.c:2269 sofia_handle_sip_i_state()
Channel sofia/softswitch_side/031152112850@sip1.ewetel.net entering
state [terminated]
2008-10-28 16:55:39 [NOTICE] sofia.c:2765 sofia_handle_sip_i_state()
Hangup sofia/softswitch_side/031152112850@sip1.ewetel.net [CS_EXECUTE]
[ORIGINATOR_CANCEL]
2008-10-28 16:55:39 [DEBUG] switch_channel.c:1449
switch_channel_perform_hangup() Send signal
sofia/softswitch_side/031152112850@sip1.ewetel.net [KILL]
2008-10-28 16:55:39 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
sofia/softswitch_side/031152112850@sip1.ewetel.net [BREAK]
2008-10-28 16:55:39 [DEBUG] ozmod_ss7_boost.c:932 zap_ss7_boost_run() RX
EVENT (N): CALL_START_ACK:(81) [w1g31] Rc=0 CSid=1 Seq=1
2008-10-28 16:55:39 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-28 16:55:39 [DEBUG] ozmod_ss7_boost.c:296
handle_call_start_ack() Assign chan 1:30 (1:31) CSid=1
2008-10-28 16:55:39 [DEBUG] mod_openzap.c:340 tech_init() Set codec PCMA
20ms
2008-10-28 16:55:39 [DEBUG] mod_openzap.c:1020
channel_outgoing_channel() Connect outbound channel OpenZAP/1:30/44180002850
2008-10-28 16:55:39 [NOTICE] switch_channel.c:553
switch_channel_set_name() New Channel OpenZAP/1:30/44180002850
[cf5117e3-bd44-40b6-8dec-2bc211f51e97]
2008-10-28 16:55:39 [DEBUG] mod_openzap.c:1029
channel_outgoing_channel() (OpenZAP/1:30/44180002850) State Change
CS_NEW -> CS_INIT
2008-10-28 16:55:39 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
OpenZAP/1:30/44180002850 [BREAK]
2008-10-28 16:55:39 [DEBUG] switch_ivr_originate.c:1598
switch_ivr_originate() Originate Cancelled by originator termination
Cause: 487 [ORIGINATOR_CANCEL]
2008-10-28 16:55:39 [NOTICE] switch_ivr_originate.c:1637
switch_ivr_originate() Hangup OpenZAP/1:30/44180002850 [CS_INIT]
[ORIGINATOR_CANCEL]
2008-10-28 16:55:39 [DEBUG] switch_channel.c:1449
switch_channel_perform_hangup() Send signal OpenZAP/1:30/44180002850 [KILL]
2008-10-28 16:55:39 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
OpenZAP/1:30/44180002850 [BREAK]
2008-10-28 16:55:39 [INFO] mod_dptools.c:1843 audio_bridge_function()
Originate Failed. Cause: ORIGINATOR_CANCEL
2008-10-28 16:55:39 [DEBUG] switch_core_state_machine.c:432
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net) State EXECUTE going
to sleep
2008-10-28 16:55:39 [DEBUG] switch_core_state_machine.c:367
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net) Running State
Change CS_HANGUP
2008-10-28 16:55:39 [DEBUG] switch_core_state_machine.c:367
switch_core_session_run() (OpenZAP/1:30/44180002850) Running State
Change CS_HANGUP
2008-10-28 16:55:39 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net) State HANGUP
2008-10-28 16:55:39 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run() (OpenZAP/1:30/44180002850) State HANGUP
2008-10-28 16:55:39 [DEBUG] mod_sofia.c:276 sofia_on_hangup() Channel
sofia/softswitch_side/031152112850@sip1.ewetel.net hanging up, cause:
ORIGINATOR_CANCEL

!!!!!!!!!!!!!!!!!!!!!!!!!!

2008-10-28 16:55:39 [INFO] mod_openzap.c:446 channel_on_hangup()
ZAP-STATE is '0'
2008-10-28 16:55:39 [DEBUG] mod_openzap.c:453 channel_on_hangup()
Changing state on 1:30 from DOWN to HANGUP
2008-10-28 16:55:39 [DEBUG] mod_openzap.c:474 channel_on_hangup()
OpenZAP/1:30/44180002850 CHANNEL HANGUP

!!!!!!!!!!!!!!!!!!!!!!!!!!!

2008-10-28 16:55:39 [DEBUG] switch_core_state_machine.c:46
switch_core_standard_on_hangup() OpenZAP/1:30/44180002850 Standard
HANGUP, cause: ORIGINATOR_CANCEL
2008-10-28 16:55:39 [DEBUG] switch_core_state_machine.c:46
switch_core_standard_on_hangup()
sofia/softswitch_side/031152112850@sip1.ewetel.net Standard HANGUP,
cause: ORIGINATOR_CANCEL
2008-10-28 16:55:39 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run() (OpenZAP/1:30/44180002850) State HANGUP going
to sleep
2008-10-28 16:55:39 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net) State HANGUP going
to sleep
2008-10-28 16:55:39 [DEBUG] switch_core_session.c:860
switch_core_session_thread() Session 2 (OpenZAP/1:30/44180002850)
Locked, Waiting on external entities
2008-10-28 16:55:39 [DEBUG] switch_core_session.c:860
switch_core_session_thread() Session 1
(sofia/softswitch_side/031152112850@sip1.ewetel.net) Locked, Waiting on
external entities
2008-10-28 16:55:39 [NOTICE] switch_core_session.c:878
switch_core_session_thread() Session 2 (OpenZAP/1:30/44180002850) Ended
2008-10-28 16:55:39 [NOTICE] switch_core_session.c:878
switch_core_session_thread() Session 1
(sofia/softswitch_side/031152112850@sip1.ewetel.net) Ended
2008-10-28 16:55:39 [NOTICE] switch_core_session.c:880
switch_core_session_thread() Close Channel OpenZAP/1:30/44180002850
[CS_HANGUP]
2008-10-28 16:55:39 [NOTICE] switch_core_session.c:880
switch_core_session_thread() Close Channel
sofia/softswitch_side/031152112850@sip1.ewetel.net [CS_HANGUP]
2008-10-28 16:55:39 [DEBUG] switch_core_codec.c:76
switch_core_session_set_read_codec() resetting to uninitilized codec,
setting to NULL
2008-10-28 16:55:39 [DEBUG] ozmod_ss7_boost.c:644 state_advance() 1:30
STATE [HANGUP]
2008-10-28 16:55:39 [DEBUG] ss7_boost_client.c:216 ss7bc_exec_command()
TX EVENT (N): CALL_START_NACK:(82) [w1g31] Rc=16 CSid=0 Seq=1
2008-10-28 16:55:40 [DEBUG] ozmod_ss7_boost.c:932 zap_ss7_boost_run() RX
EVENT (N): CALL_START_NACK_ACK:(83) [w1g31] Rc=0 CSid=1 Seq=2
2008-10-28 16:55:40 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-28 16:55:40 [DEBUG] ozmod_ss7_boost.c:333 handle_call_done()
Changing state on 1:30 from HANGUP to HANGUP_COMPLETE
2008-10-28 16:55:40 [DEBUG] ozmod_ss7_boost.c:644 state_advance() 1:30
STATE [HANGUP_COMPLETE]
2008-10-28 16:55:40 [DEBUG] ozmod_ss7_boost.c:736 state_advance()
Changing state on 1:30 from HANGUP_COMPLETE to DOWN
2008-10-28 16:55:40 [DEBUG] ozmod_ss7_boost.c:644 state_advance() 1:30
STATE [DOWN]
2008-10-28 16:55:40 [DEBUG] zap_io.c:1123 zap_channel_done() channel
done 1:30


regards
Helmut

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkkHN70ACgkQ4tZeNddg3dw86gCgkFql8szq3u8/aOIcr9FNz4Gz
bBsAn0n+unK6p48XZd3y+ESEf96WNm+8
=7ZI6
-----END PGP SIGNATURE-----

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
anthony.minessale at g...
Guest





PostPosted: Tue Oct 28, 2008 12:11 pm    Post subject: [Freeswitch-users] Problem with mod_openzap.c and SS7boost Reply with quote

can you add more debug to the following places (with your patch disabled)

ozmod_ss7_boost.c:245
zap_log(ZAP_LOG_CRIT, "setting init state to progress_media\n");

zap_io.c:999
zap_log(ZAP_LOG_CRIT, "init_state=%d\n", zchan->init_state);


mod_openzap.c:368
zap_log(ZAP_LOG_CRIT, "calling zap_channel_init\n");


also look for any purple veto lines during the call.



On Tue, Oct 28, 2008 at 11:03 AM, Helmut Kuper <helmut.kuper@ewetel.de (helmut.kuper@ewetel.de)> wrote:
Quote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1


Hi Anthony,

I'm not familar with mod_openzap code nor with ss7boost stuff. I'm not
sure if the hack introduce some bad side effects but I know it seems to
solve this special problem. I can reproduce it any time.

Problem was, that when I make a call into pstn and cancel it very
shortly ( 0.5 .. 1 second after putting the call to openzap) after that
the pstn side remains ringing until timout.

It seems to me that the case is not considered when pstn side is
initiating and zap state is still ZAP_CHANNEL_STATE_DOWN and call is
canceled.

When the problem occures the tech_pvt->zchan->state is
ZAP_CHANNEL_STATE_DOWN (0)



Here is FS debug log when the problem occurs:
Important part is marked with some '!'


2008-10-28 16:52:47 [DEBUG] switch_core_state_machine.c:144
switch_core_standard_on_execute()
sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) Execute
bridge(OpenZAP/1/a/44180002850)
2008-10-28 16:52:47 [DEBUG] ozmod_ss7_boost.c:225
ss7_boost_channel_request() TX EVENT: CALL_START:(80) [w1g1] CSid=5
Seq=6 Cn=[hk] Cd=[44180002850] Ci=[31152112850]
2008-10-28 16:52:47 [DEBUG] sofia.c:2269 sofia_handle_sip_i_state()
Channel sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) entering
state [terminated]
2008-10-28 16:52:47 [NOTICE] sofia.c:2765 sofia_handle_sip_i_state()
Hangup sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) [CS_EXECUTE]
[ORIGINATOR_CANCEL]
2008-10-28 16:52:47 [DEBUG] switch_channel.c:1449
switch_channel_perform_hangup() Send signal
sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) [KILL]
2008-10-28 16:52:47 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) [BREAK]
2008-10-28 16:52:48 [DEBUG] ozmod_ss7_boost.c:932 zap_ss7_boost_run() RX
EVENT (N): CALL_START_ACK:(81) [w1g30] Rc=0 CSid=5 Seq=8
2008-10-28 16:52:48 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-28 16:52:48 [DEBUG] ozmod_ss7_boost.c:296
handle_call_start_ack() Assign chan 1:29 (1:30) CSid=5
2008-10-28 16:52:48 [DEBUG] mod_openzap.c:340 tech_init() Set codec PCMA
20ms
2008-10-28 16:52:48 [DEBUG] mod_openzap.c:1020
channel_outgoing_channel() Connect outbound channel OpenZAP/1:29/44180002850
2008-10-28 16:52:48 [NOTICE] switch_channel.c:553
switch_channel_set_name() New Channel OpenZAP/1:29/44180002850
[c1e6d98e-6654-4d6c-8e1b-41a4b3a52d39]
2008-10-28 16:52:48 [DEBUG] mod_openzap.c:1029
channel_outgoing_channel() (OpenZAP/1:29/44180002850) State Change
CS_NEW -> CS_INIT
2008-10-28 16:52:48 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
OpenZAP/1:29/44180002850 [BREAK]
2008-10-28 16:52:48 [DEBUG] switch_ivr_originate.c:1598
switch_ivr_originate() Originate Cancelled by originator termination
Cause: 487 [ORIGINATOR_CANCEL]
2008-10-28 16:52:48 [NOTICE] switch_ivr_originate.c:1637
switch_ivr_originate() Hangup OpenZAP/1:29/44180002850 [CS_INIT]
[ORIGINATOR_CANCEL]
2008-10-28 16:52:48 [DEBUG] switch_channel.c:1449
switch_channel_perform_hangup() Send signal OpenZAP/1:29/44180002850 [KILL]
2008-10-28 16:52:48 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
OpenZAP/1:29/44180002850 [BREAK]
2008-10-28 16:52:48 [INFO] mod_dptools.c:1843 audio_bridge_function()
Originate Failed. Cause: ORIGINATOR_CANCEL
2008-10-28 16:52:48 [DEBUG] switch_core_state_machine.c:432
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net)) State EXECUTE going
to sleep
2008-10-28 16:52:48 [DEBUG] switch_core_state_machine.c:367
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net)) Running State
Change CS_HANGUP
2008-10-28 16:52:48 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net)) State HANGUP
2008-10-28 16:52:48 [DEBUG] mod_sofia.c:276 sofia_on_hangup() Channel
sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) hanging up, cause:
ORIGINATOR_CANCEL
2008-10-28 16:52:48 [DEBUG] switch_core_state_machine.c:46
switch_core_standard_on_hangup()
sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) Standard HANGUP,
cause: ORIGINATOR_CANCEL
2008-10-28 16:52:48 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net)) State HANGUP going
to sleep
2008-10-28 16:52:48 [DEBUG] switch_core_session.c:860
switch_core_session_thread() Session 8
(sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net)) Locked, Waiting on
external entities
2008-10-28 16:52:48 [NOTICE] switch_core_session.c:878
switch_core_session_thread() Session 8
(sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net)) Ended
2008-10-28 16:52:48 [NOTICE] switch_core_session.c:880
switch_core_session_thread() Close Channel
sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) [CS_HANGUP]
2008-10-28 16:52:48 [DEBUG] switch_core_state_machine.c:367
switch_core_session_run() (OpenZAP/1:29/44180002850) Running State
Change CS_HANGUP
2008-10-28 16:52:48 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run() (OpenZAP/1:29/44180002850) State HANGUP

!!!!!!!!!!!!!!!!!!!!!!!!!

2008-10-28 16:52:48 [INFO] mod_openzap.c:446 channel_on_hangup()
ZAP-STATE is '0'
2008-10-28 16:52:48 [DEBUG] mod_openzap.c:474 channel_on_hangup()
OpenZAP/1:29/44180002850 CHANNEL HANGUP

!!!!!!!!!!!!!!!!!!!!!!!!!

2008-10-28 16:52:48 [DEBUG] switch_core_state_machine.c:46
switch_core_standard_on_hangup() OpenZAP/1:29/44180002850 Standard
HANGUP, cause: ORIGINATOR_CANCEL
2008-10-28 16:52:48 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run() (OpenZAP/1:29/44180002850) State HANGUP going
to sleep
2008-10-28 16:52:48 [DEBUG] switch_core_session.c:860
switch_core_session_thread() Session 9 (OpenZAP/1:29/44180002850)
Locked, Waiting on external entities
2008-10-28 16:52:48 [NOTICE] switch_core_session.c:878
switch_core_session_thread() Session 9 (OpenZAP/1:29/44180002850) Ended
2008-10-28 16:52:48 [NOTICE] switch_core_session.c:880
switch_core_session_thread() Close Channel OpenZAP/1:29/44180002850
[CS_HANGUP]
2008-10-28 16:52:48 [DEBUG] switch_core_codec.c:76
switch_core_session_set_read_codec() resetting to uninitilized codec,
setting to NULL
2008-10-28 16:52:50 [DEBUG] ozmod_ss7_boost.c:932 zap_ss7_boost_run() RX
EVENT (N): CALL_ANSWERED:(84) [w1g30] Rc=0 CSid=5 Seq=9
2008-10-28 16:52:50 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-28 16:53:07 [DEBUG] ozmod_ss7_boost.c:932 zap_ss7_boost_run() RX
EVENT (N): CALL_STOPPED:(85) [w1g31] Rc=16 CSid=4 Seq=10
2008-10-28 16:53:07 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-28 16:53:07 [DEBUG] ozmod_ss7_boost.c:408 handle_call_stop()
Changing state on 1:30 from DOWN to TERMINATING
2008-10-28 16:53:07 [DEBUG] ozmod_ss7_boost.c:644 state_advance() 1:30
STATE [TERMINATING]
2008-10-28 16:53:07 [DEBUG] mod_openzap.c:1437 on_clear_channel_signal()
got clear channel sig [STOP]
2008-10-28 16:53:07 [DEBUG] ozmod_ss7_boost.c:782 state_advance()
Changing state on 1:30 from TERMINATING to HANGUP_COMPLETE
2008-10-28 16:53:07 [DEBUG] ss7_boost_client.c:216 ss7bc_exec_command()
TX EVENT (N): CALL_STOPPED_ACK:(86) [w1g31] Rc=0 CSid=0 Seq=7
2008-10-28 16:53:07 [DEBUG] ozmod_ss7_boost.c:644 state_advance() 1:30
STATE [HANGUP_COMPLETE]
2008-10-28 16:53:07 [DEBUG] ozmod_ss7_boost.c:736 state_advance()
Changing state on 1:30 from HANGUP_COMPLETE to DOWN
2008-10-28 16:53:07 [DEBUG] ozmod_ss7_boost.c:644 state_advance() 1:30
STATE [DOWN]
2008-10-28 16:53:07 [DEBUG] zap_io.c:1123 zap_channel_done() channel
done 1:30
2008-10-28 16:53:14 [DEBUG] ozmod_ss7_boost.c:932 zap_ss7_boost_run() RX
EVENT (N): CALL_STOPPED:(85) [w1g30] Rc=16 CSid=5 Seq=11
2008-10-28 16:53:14 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-28 16:53:14 [DEBUG] ozmod_ss7_boost.c:408 handle_call_stop()
Changing state on 1:29 from DOWN to TERMINATING
2008-10-28 16:53:14 [DEBUG] ozmod_ss7_boost.c:644 state_advance() 1:29
STATE [TERMINATING]
2008-10-28 16:53:14 [DEBUG] mod_openzap.c:1437 on_clear_channel_signal()
got clear channel sig [STOP]
2008-10-28 16:53:14 [DEBUG] ozmod_ss7_boost.c:782 state_advance()
Changing state on 1:29 from TERMINATING to HANGUP_COMPLETE
2008-10-28 16:53:14 [DEBUG] ss7_boost_client.c:216 ss7bc_exec_command()
TX EVENT (N): CALL_STOPPED_ACK:(86) [w1g30] Rc=0 CSid=0 Seq=8
2008-10-28 16:53:14 [DEBUG] ozmod_ss7_boost.c:644 state_advance() 1:29
STATE [HANGUP_COMPLETE]
2008-10-28 16:53:14 [DEBUG] ozmod_ss7_boost.c:736 state_advance()
Changing state on 1:29 from HANGUP_COMPLETE to DOWN
2008-10-28 16:53:14 [DEBUG] ozmod_ss7_boost.c:644 state_advance() 1:29
STATE [DOWN]
2008-10-28 16:53:14 [DEBUG] zap_io.c:1123 zap_channel_done() channel
done 1:29




And here is the log, when my little hack is applied:
Important part is marked with some '!'

2008-10-28 16:55:38 [DEBUG] switch_core_state_machine.c:144
switch_core_standard_on_execute()
sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) Execute
bridge(OpenZAP/1/a/44180002850)
2008-10-28 16:55:38 [DEBUG] ozmod_ss7_boost.c:225
ss7_boost_channel_request() TX EVENT: CALL_START:(80) [w1g1] CSid=1
Seq=0 Cn=[hk] Cd=[44180002850] Ci=[31152112850]
2008-10-28 16:55:39 [DEBUG] sofia.c:2269 sofia_handle_sip_i_state()
Channel sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) entering
state [terminated]
2008-10-28 16:55:39 [NOTICE] sofia.c:2765 sofia_handle_sip_i_state()
Hangup sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) [CS_EXECUTE]
[ORIGINATOR_CANCEL]
2008-10-28 16:55:39 [DEBUG] switch_channel.c:1449
switch_channel_perform_hangup() Send signal
sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) [KILL]
2008-10-28 16:55:39 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) [BREAK]
2008-10-28 16:55:39 [DEBUG] ozmod_ss7_boost.c:932 zap_ss7_boost_run() RX
EVENT (N): CALL_START_ACK:(81) [w1g31] Rc=0 CSid=1 Seq=1
2008-10-28 16:55:39 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-28 16:55:39 [DEBUG] ozmod_ss7_boost.c:296
handle_call_start_ack() Assign chan 1:30 (1:31) CSid=1
2008-10-28 16:55:39 [DEBUG] mod_openzap.c:340 tech_init() Set codec PCMA
20ms
2008-10-28 16:55:39 [DEBUG] mod_openzap.c:1020
channel_outgoing_channel() Connect outbound channel OpenZAP/1:30/44180002850
2008-10-28 16:55:39 [NOTICE] switch_channel.c:553
switch_channel_set_name() New Channel OpenZAP/1:30/44180002850
[cf5117e3-bd44-40b6-8dec-2bc211f51e97]
2008-10-28 16:55:39 [DEBUG] mod_openzap.c:1029
channel_outgoing_channel() (OpenZAP/1:30/44180002850) State Change
CS_NEW -> CS_INIT
2008-10-28 16:55:39 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
OpenZAP/1:30/44180002850 [BREAK]
2008-10-28 16:55:39 [DEBUG] switch_ivr_originate.c:1598
switch_ivr_originate() Originate Cancelled by originator termination
Cause: 487 [ORIGINATOR_CANCEL]
2008-10-28 16:55:39 [NOTICE] switch_ivr_originate.c:1637
switch_ivr_originate() Hangup OpenZAP/1:30/44180002850 [CS_INIT]
[ORIGINATOR_CANCEL]
2008-10-28 16:55:39 [DEBUG] switch_channel.c:1449
switch_channel_perform_hangup() Send signal OpenZAP/1:30/44180002850 [KILL]
2008-10-28 16:55:39 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
OpenZAP/1:30/44180002850 [BREAK]
2008-10-28 16:55:39 [INFO] mod_dptools.c:1843 audio_bridge_function()
Originate Failed. Cause: ORIGINATOR_CANCEL
2008-10-28 16:55:39 [DEBUG] switch_core_state_machine.c:432
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net)) State EXECUTE going
to sleep
2008-10-28 16:55:39 [DEBUG] switch_core_state_machine.c:367
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net)) Running State
Change CS_HANGUP
2008-10-28 16:55:39 [DEBUG] switch_core_state_machine.c:367
switch_core_session_run() (OpenZAP/1:30/44180002850) Running State
Change CS_HANGUP
2008-10-28 16:55:39 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net)) State HANGUP
2008-10-28 16:55:39 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run() (OpenZAP/1:30/44180002850) State HANGUP
2008-10-28 16:55:39 [DEBUG] mod_sofia.c:276 sofia_on_hangup() Channel
sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) hanging up, cause:
ORIGINATOR_CANCEL

!!!!!!!!!!!!!!!!!!!!!!!!!!

2008-10-28 16:55:39 [INFO] mod_openzap.c:446 channel_on_hangup()
ZAP-STATE is '0'
2008-10-28 16:55:39 [DEBUG] mod_openzap.c:453 channel_on_hangup()
Changing state on 1:30 from DOWN to HANGUP
2008-10-28 16:55:39 [DEBUG] mod_openzap.c:474 channel_on_hangup()
OpenZAP/1:30/44180002850 CHANNEL HANGUP

!!!!!!!!!!!!!!!!!!!!!!!!!!!

2008-10-28 16:55:39 [DEBUG] switch_core_state_machine.c:46
switch_core_standard_on_hangup() OpenZAP/1:30/44180002850 Standard
HANGUP, cause: ORIGINATOR_CANCEL
2008-10-28 16:55:39 [DEBUG] switch_core_state_machine.c:46
switch_core_standard_on_hangup()
sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) Standard HANGUP,
cause: ORIGINATOR_CANCEL
2008-10-28 16:55:39 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run() (OpenZAP/1:30/44180002850) State HANGUP going
to sleep
2008-10-28 16:55:39 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net)) State HANGUP going
to sleep
2008-10-28 16:55:39 [DEBUG] switch_core_session.c:860
switch_core_session_thread() Session 2 (OpenZAP/1:30/44180002850)
Locked, Waiting on external entities
2008-10-28 16:55:39 [DEBUG] switch_core_session.c:860
switch_core_session_thread() Session 1
(sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net)) Locked, Waiting on
external entities
2008-10-28 16:55:39 [NOTICE] switch_core_session.c:878
switch_core_session_thread() Session 2 (OpenZAP/1:30/44180002850) Ended
2008-10-28 16:55:39 [NOTICE] switch_core_session.c:878
switch_core_session_thread() Session 1
(sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net)) Ended
2008-10-28 16:55:39 [NOTICE] switch_core_session.c:880
switch_core_session_thread() Close Channel OpenZAP/1:30/44180002850
[CS_HANGUP]
2008-10-28 16:55:39 [NOTICE] switch_core_session.c:880
switch_core_session_thread() Close Channel
sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) [CS_HANGUP]
2008-10-28 16:55:39 [DEBUG] switch_core_codec.c:76
switch_core_session_set_read_codec() resetting to uninitilized codec,
setting to NULL
2008-10-28 16:55:39 [DEBUG] ozmod_ss7_boost.c:644 state_advance() 1:30
STATE [HANGUP]
2008-10-28 16:55:39 [DEBUG] ss7_boost_client.c:216 ss7bc_exec_command()
TX EVENT (N): CALL_START_NACK:(82) [w1g31] Rc=16 CSid=0 Seq=1
2008-10-28 16:55:40 [DEBUG] ozmod_ss7_boost.c:932 zap_ss7_boost_run() RX
EVENT (N): CALL_START_NACK_ACK:(83) [w1g31] Rc=0 CSid=1 Seq=2
2008-10-28 16:55:40 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-28 16:55:40 [DEBUG] ozmod_ss7_boost.c:333 handle_call_done()
Changing state on 1:30 from HANGUP to HANGUP_COMPLETE
2008-10-28 16:55:40 [DEBUG] ozmod_ss7_boost.c:644 state_advance() 1:30
STATE [HANGUP_COMPLETE]
2008-10-28 16:55:40 [DEBUG] ozmod_ss7_boost.c:736 state_advance()
Changing state on 1:30 from HANGUP_COMPLETE to DOWN
2008-10-28 16:55:40 [DEBUG] ozmod_ss7_boost.c:644 state_advance() 1:30
STATE [DOWN]
2008-10-28 16:55:40 [DEBUG] zap_io.c:1123 zap_channel_done() channel
done 1:30


regards
Helmut

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org


iEYEARECAAYFAkkHN70ACgkQ4tZeNddg3dw86gCgkFql8szq3u8/aOIcr9FNz4Gz
bBsAn0n+unK6p48XZd3y+ESEf96WNm+8
=7ZI6

-----END PGP SIGNATURE-----

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org





--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400
Back to top
helmut.kuper at ewetel.de
Guest





PostPosted: Wed Oct 29, 2008 3:16 am    Post subject: [Freeswitch-users] Problem with mod_openzap.c and SS7boost Reply with quote

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi Anthony,

ok, here the console output. There were no purple lines

2008-10-29 09:04:57 [DEBUG] switch_core_state_machine.c:144
switch_core_standard_on_execute()
sofia/softswitch_side/031152112850@sip1.ewetel.net Execute
bridge(OpenZAP/1/a/44180002850)
2008-10-29 09:04:57 [DEBUG] ozmod_ss7_boost.c:225
ss7_boost_channel_request() TX EVENT: CALL_START:(80) [w1g1] CSid=2
Seq=1 Cn=[hk] Cd=[44180002850] Ci=[31152112850]
2008-10-29 09:04:58 [DEBUG] sofia.c:2269 sofia_handle_sip_i_state()
Channel sofia/softswitch_side/031152112850@sip1.ewetel.net entering
state [terminated]
2008-10-29 09:04:58 [NOTICE] sofia.c:2765 sofia_handle_sip_i_state()
Hangup sofia/softswitch_side/031152112850@sip1.ewetel.net [CS_EXECUTE]
[ORIGINATOR_CANCEL]
2008-10-29 09:04:58 [DEBUG] switch_channel.c:1449
switch_channel_perform_hangup() Send signal
sofia/softswitch_side/031152112850@sip1.ewetel.net [KILL]
2008-10-29 09:04:58 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
sofia/softswitch_side/031152112850@sip1.ewetel.net [BREAK]
2008-10-29 09:04:58 [DEBUG] ozmod_ss7_boost.c:933 zap_ss7_boost_run() RX
EVENT (N): CALL_START_ACK:(81) [w1g30] Rc=0 CSid=2 Seq=3
2008-10-29 09:04:58 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-29 09:04:58 [DEBUG] ozmod_ss7_boost.c:297
handle_call_start_ack() Assign chan 1:29 (1:30) CSid=2
2008-10-29 09:04:58 [CRIT] ozmod_ss7_boost.c:245
ss7_boost_channel_request() setting init state to progress_media
2008-10-29 09:04:58 [DEBUG] mod_openzap.c:340 tech_init() Set codec PCMA
20ms
2008-10-29 09:04:58 [DEBUG] mod_openzap.c:1022
channel_outgoing_channel() Connect outbound channel OpenZAP/1:29/44180002850
2008-10-29 09:04:58 [NOTICE] switch_channel.c:553
switch_channel_set_name() New Channel OpenZAP/1:29/44180002850
[a231e1ef-2cfc-4de2-ab73-2175c184dff5]
2008-10-29 09:04:58 [DEBUG] mod_openzap.c:1031
channel_outgoing_channel() (OpenZAP/1:29/44180002850) State Change
CS_NEW -> CS_INIT
2008-10-29 09:04:58 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
OpenZAP/1:29/44180002850 [BREAK]
2008-10-29 09:04:58 [DEBUG] switch_ivr_originate.c:1598
switch_ivr_originate() Originate Cancelled by originator termination
Cause: 487 [ORIGINATOR_CANCEL]
2008-10-29 09:04:58 [NOTICE] switch_ivr_originate.c:1637
switch_ivr_originate() Hangup OpenZAP/1:29/44180002850 [CS_INIT]
[ORIGINATOR_CANCEL]
2008-10-29 09:04:58 [DEBUG] switch_channel.c:1449
switch_channel_perform_hangup() Send signal OpenZAP/1:29/44180002850 [KILL]
2008-10-29 09:04:58 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
OpenZAP/1:29/44180002850 [BREAK]
2008-10-29 09:04:58 [INFO] mod_dptools.c:1843 audio_bridge_function()
Originate Failed. Cause: ORIGINATOR_CANCEL
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:432
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net) State EXECUTE going
to sleep
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:367
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net) Running State
Change CS_HANGUP
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net) State HANGUP
2008-10-29 09:04:58 [DEBUG] mod_sofia.c:276 sofia_on_hangup() Channel
sofia/softswitch_side/031152112850@sip1.ewetel.net hanging up, cause:
ORIGINATOR_CANCEL
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:46
switch_core_standard_on_hangup()
sofia/softswitch_side/031152112850@sip1.ewetel.net Standard HANGUP,
cause: ORIGINATOR_CANCEL
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net) State HANGUP going
to sleep
2008-10-29 09:04:58 [DEBUG] switch_core_session.c:860
switch_core_session_thread() Session 3
(sofia/softswitch_side/031152112850@sip1.ewetel.net) Locked, Waiting on
external entities
2008-10-29 09:04:58 [NOTICE] switch_core_session.c:878
switch_core_session_thread() Session 3
(sofia/softswitch_side/031152112850@sip1.ewetel.net) Ended
2008-10-29 09:04:58 [NOTICE] switch_core_session.c:880
switch_core_session_thread() Close Channel
sofia/softswitch_side/031152112850@sip1.ewetel.net [CS_HANGUP]
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:367
switch_core_session_run() (OpenZAP/1:29/44180002850) Running State
Change CS_HANGUP
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run() (OpenZAP/1:29/44180002850) State HANGUP
2008-10-29 09:04:58 [DEBUG] mod_openzap.c:476 channel_on_hangup()
OpenZAP/1:29/44180002850 CHANNEL HANGUP
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:46
switch_core_standard_on_hangup() OpenZAP/1:29/44180002850 Standard
HANGUP, cause: ORIGINATOR_CANCEL
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run() (OpenZAP/1:29/44180002850) State HANGUP going
to sleep
2008-10-29 09:04:58 [DEBUG] switch_core_session.c:860
switch_core_session_thread() Session 4 (OpenZAP/1:29/44180002850)
Locked, Waiting on external entities
2008-10-29 09:04:58 [NOTICE] switch_core_session.c:878
switch_core_session_thread() Session 4 (OpenZAP/1:29/44180002850) Ended
2008-10-29 09:04:58 [NOTICE] switch_core_session.c:880
switch_core_session_thread() Close Channel OpenZAP/1:29/44180002850
[CS_HANGUP]
2008-10-29 09:04:58 [DEBUG] switch_core_codec.c:76
switch_core_session_set_read_codec() resetting to uninitilized codec,
setting to NULL
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:933 zap_ss7_boost_run() RX
EVENT (N): CALL_STOPPED:(85) [w1g31] Rc=16 CSid=1 Seq=4
2008-10-29 09:05:07 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:409 handle_call_stop()
Changing state on 1:30 from DOWN to TERMINATING
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:645 state_advance() 1:30
STATE [TERMINATING]
2008-10-29 09:05:07 [DEBUG] mod_openzap.c:1439 on_clear_channel_signal()
got clear channel sig [STOP]
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:783 state_advance()
Changing state on 1:30 from TERMINATING to HANGUP_COMPLETE
2008-10-29 09:05:07 [DEBUG] ss7_boost_client.c:216 ss7bc_exec_command()
TX EVENT (N): CALL_STOPPED_ACK:(86) [w1g31] Rc=0 CSid=0 Seq=2
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:645 state_advance() 1:30
STATE [HANGUP_COMPLETE]
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:737 state_advance()
Changing state on 1:30 from HANGUP_COMPLETE to DOWN
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:645 state_advance() 1:30
STATE [DOWN]
2008-10-29 09:05:07 [DEBUG] zap_io.c:1124 zap_channel_done() channel
done 1:30
2008-10-29 09:05:12 [DEBUG] ozmod_ss7_boost.c:933 zap_ss7_boost_run() RX
EVENT (N): CALL_ANSWERED:(84) [w1g30] Rc=0 CSid=2 Seq=5
2008-10-29 09:05:12 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:933 zap_ss7_boost_run() RX
EVENT (N): CALL_STOPPED:(85) [w1g30] Rc=16 CSid=2 Seq=6
2008-10-29 09:05:36 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:409 handle_call_stop()
Changing state on 1:29 from DOWN to TERMINATING
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:645 state_advance() 1:29
STATE [TERMINATING]
2008-10-29 09:05:36 [DEBUG] mod_openzap.c:1439 on_clear_channel_signal()
got clear channel sig [STOP]
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:783 state_advance()
Changing state on 1:29 from TERMINATING to HANGUP_COMPLETE
2008-10-29 09:05:36 [DEBUG] ss7_boost_client.c:216 ss7bc_exec_command()
TX EVENT (N): CALL_STOPPED_ACK:(86) [w1g30] Rc=0 CSid=0 Seq=3
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:645 state_advance() 1:29
STATE [HANGUP_COMPLETE]
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:737 state_advance()
Changing state on 1:29 from HANGUP_COMPLETE to DOWN
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:645 state_advance() 1:29
STATE [DOWN]
2008-10-29 09:05:36 [DEBUG] zap_io.c:1124 zap_channel_done() channel
done 1:29


Anthony Minessale schrieb:
Quote:
can you add more debug to the following places (with your patch disabled)

ozmod_ss7_boost.c:245
zap_log(ZAP_LOG_CRIT, "setting init state to progress_media\n");

zap_io.c:999
zap_log(ZAP_LOG_CRIT, "init_state=%d\n", zchan->init_state);


mod_openzap.c:368
zap_log(ZAP_LOG_CRIT, "calling zap_channel_init\n");


also look for any purple veto lines during the call.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkkIGfcACgkQ4tZeNddg3dybkwCgsbmA9R7ZOaA8L5a2e7eQVeCD
+oQAnA0zoCaClcEhfzz2EbllEW3E5wi5
=oAY/
-----END PGP SIGNATURE-----

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
helmut.kuper at ewetel.de
Guest





PostPosted: Fri Oct 31, 2008 2:13 am    Post subject: [Freeswitch-users] Problem with mod_openzap.c and SS7boost Reply with quote

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hello,

just to put get some attention on this ...

regards
Helmut



Helmut Kuper schrieb:
Quote:
Hi Anthony,

ok, here the console output. There were no purple lines

2008-10-29 09:04:57 [DEBUG] switch_core_state_machine.c:144
switch_core_standard_on_execute()
sofia/softswitch_side/031152112850@sip1.ewetel.net Execute
bridge(OpenZAP/1/a/44180002850)
2008-10-29 09:04:57 [DEBUG] ozmod_ss7_boost.c:225
ss7_boost_channel_request() TX EVENT: CALL_START:(80) [w1g1] CSid=2
Seq=1 Cn=[hk] Cd=[44180002850] Ci=[31152112850]
2008-10-29 09:04:58 [DEBUG] sofia.c:2269 sofia_handle_sip_i_state()
Channel sofia/softswitch_side/031152112850@sip1.ewetel.net entering
state [terminated]
2008-10-29 09:04:58 [NOTICE] sofia.c:2765 sofia_handle_sip_i_state()
Hangup sofia/softswitch_side/031152112850@sip1.ewetel.net [CS_EXECUTE]
[ORIGINATOR_CANCEL]
2008-10-29 09:04:58 [DEBUG] switch_channel.c:1449
switch_channel_perform_hangup() Send signal
sofia/softswitch_side/031152112850@sip1.ewetel.net [KILL]
2008-10-29 09:04:58 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
sofia/softswitch_side/031152112850@sip1.ewetel.net [BREAK]
2008-10-29 09:04:58 [DEBUG] ozmod_ss7_boost.c:933 zap_ss7_boost_run() RX
EVENT (N): CALL_START_ACK:(81) [w1g30] Rc=0 CSid=2 Seq=3
2008-10-29 09:04:58 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-29 09:04:58 [DEBUG] ozmod_ss7_boost.c:297
handle_call_start_ack() Assign chan 1:29 (1:30) CSid=2
2008-10-29 09:04:58 [CRIT] ozmod_ss7_boost.c:245
ss7_boost_channel_request() setting init state to progress_media
2008-10-29 09:04:58 [DEBUG] mod_openzap.c:340 tech_init() Set codec PCMA
20ms
2008-10-29 09:04:58 [DEBUG] mod_openzap.c:1022
channel_outgoing_channel() Connect outbound channel OpenZAP/1:29/44180002850
2008-10-29 09:04:58 [NOTICE] switch_channel.c:553
switch_channel_set_name() New Channel OpenZAP/1:29/44180002850
[a231e1ef-2cfc-4de2-ab73-2175c184dff5]
2008-10-29 09:04:58 [DEBUG] mod_openzap.c:1031
channel_outgoing_channel() (OpenZAP/1:29/44180002850) State Change
CS_NEW -> CS_INIT
2008-10-29 09:04:58 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
OpenZAP/1:29/44180002850 [BREAK]
2008-10-29 09:04:58 [DEBUG] switch_ivr_originate.c:1598
switch_ivr_originate() Originate Cancelled by originator termination
Cause: 487 [ORIGINATOR_CANCEL]
2008-10-29 09:04:58 [NOTICE] switch_ivr_originate.c:1637
switch_ivr_originate() Hangup OpenZAP/1:29/44180002850 [CS_INIT]
[ORIGINATOR_CANCEL]
2008-10-29 09:04:58 [DEBUG] switch_channel.c:1449
switch_channel_perform_hangup() Send signal OpenZAP/1:29/44180002850 [KILL]
2008-10-29 09:04:58 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
OpenZAP/1:29/44180002850 [BREAK]
2008-10-29 09:04:58 [INFO] mod_dptools.c:1843 audio_bridge_function()
Originate Failed. Cause: ORIGINATOR_CANCEL
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:432
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net) State EXECUTE going
to sleep
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:367
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net) Running State
Change CS_HANGUP
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net) State HANGUP
2008-10-29 09:04:58 [DEBUG] mod_sofia.c:276 sofia_on_hangup() Channel
sofia/softswitch_side/031152112850@sip1.ewetel.net hanging up, cause:
ORIGINATOR_CANCEL
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:46
switch_core_standard_on_hangup()
sofia/softswitch_side/031152112850@sip1.ewetel.net Standard HANGUP,
cause: ORIGINATOR_CANCEL
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net) State HANGUP going
to sleep
2008-10-29 09:04:58 [DEBUG] switch_core_session.c:860
switch_core_session_thread() Session 3
(sofia/softswitch_side/031152112850@sip1.ewetel.net) Locked, Waiting on
external entities
2008-10-29 09:04:58 [NOTICE] switch_core_session.c:878
switch_core_session_thread() Session 3
(sofia/softswitch_side/031152112850@sip1.ewetel.net) Ended
2008-10-29 09:04:58 [NOTICE] switch_core_session.c:880
switch_core_session_thread() Close Channel
sofia/softswitch_side/031152112850@sip1.ewetel.net [CS_HANGUP]
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:367
switch_core_session_run() (OpenZAP/1:29/44180002850) Running State
Change CS_HANGUP
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run() (OpenZAP/1:29/44180002850) State HANGUP
2008-10-29 09:04:58 [DEBUG] mod_openzap.c:476 channel_on_hangup()
OpenZAP/1:29/44180002850 CHANNEL HANGUP
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:46
switch_core_standard_on_hangup() OpenZAP/1:29/44180002850 Standard
HANGUP, cause: ORIGINATOR_CANCEL
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run() (OpenZAP/1:29/44180002850) State HANGUP going
to sleep
2008-10-29 09:04:58 [DEBUG] switch_core_session.c:860
switch_core_session_thread() Session 4 (OpenZAP/1:29/44180002850)
Locked, Waiting on external entities
2008-10-29 09:04:58 [NOTICE] switch_core_session.c:878
switch_core_session_thread() Session 4 (OpenZAP/1:29/44180002850) Ended
2008-10-29 09:04:58 [NOTICE] switch_core_session.c:880
switch_core_session_thread() Close Channel OpenZAP/1:29/44180002850
[CS_HANGUP]
2008-10-29 09:04:58 [DEBUG] switch_core_codec.c:76
switch_core_session_set_read_codec() resetting to uninitilized codec,
setting to NULL
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:933 zap_ss7_boost_run() RX
EVENT (N): CALL_STOPPED:(85) [w1g31] Rc=16 CSid=1 Seq=4
2008-10-29 09:05:07 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:409 handle_call_stop()
Changing state on 1:30 from DOWN to TERMINATING
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:645 state_advance() 1:30
STATE [TERMINATING]
2008-10-29 09:05:07 [DEBUG] mod_openzap.c:1439 on_clear_channel_signal()
got clear channel sig [STOP]
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:783 state_advance()
Changing state on 1:30 from TERMINATING to HANGUP_COMPLETE
2008-10-29 09:05:07 [DEBUG] ss7_boost_client.c:216 ss7bc_exec_command()
TX EVENT (N): CALL_STOPPED_ACK:(86) [w1g31] Rc=0 CSid=0 Seq=2
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:645 state_advance() 1:30
STATE [HANGUP_COMPLETE]
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:737 state_advance()
Changing state on 1:30 from HANGUP_COMPLETE to DOWN
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:645 state_advance() 1:30
STATE [DOWN]
2008-10-29 09:05:07 [DEBUG] zap_io.c:1124 zap_channel_done() channel
done 1:30
2008-10-29 09:05:12 [DEBUG] ozmod_ss7_boost.c:933 zap_ss7_boost_run() RX
EVENT (N): CALL_ANSWERED:(84) [w1g30] Rc=0 CSid=2 Seq=5
2008-10-29 09:05:12 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:933 zap_ss7_boost_run() RX
EVENT (N): CALL_STOPPED:(85) [w1g30] Rc=16 CSid=2 Seq=6
2008-10-29 09:05:36 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:409 handle_call_stop()
Changing state on 1:29 from DOWN to TERMINATING
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:645 state_advance() 1:29
STATE [TERMINATING]
2008-10-29 09:05:36 [DEBUG] mod_openzap.c:1439 on_clear_channel_signal()
got clear channel sig [STOP]
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:783 state_advance()
Changing state on 1:29 from TERMINATING to HANGUP_COMPLETE
2008-10-29 09:05:36 [DEBUG] ss7_boost_client.c:216 ss7bc_exec_command()
TX EVENT (N): CALL_STOPPED_ACK:(86) [w1g30] Rc=0 CSid=0 Seq=3
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:645 state_advance() 1:29
STATE [HANGUP_COMPLETE]
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:737 state_advance()
Changing state on 1:29 from HANGUP_COMPLETE to DOWN
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:645 state_advance() 1:29
STATE [DOWN]
2008-10-29 09:05:36 [DEBUG] zap_io.c:1124 zap_channel_done() channel
done 1:29


Anthony Minessale schrieb:
Quote:
can you add more debug to the following places (with your patch disabled)

Quote:
ozmod_ss7_boost.c:245
zap_log(ZAP_LOG_CRIT, "setting init state to progress_media\n");

Quote:
zap_io.c:999
zap_log(ZAP_LOG_CRIT, "init_state=%d\n", zchan->init_state);


Quote:
mod_openzap.c:368
zap_log(ZAP_LOG_CRIT, "calling zap_channel_init\n");


Quote:
also look for any purple veto lines during the call.

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkkKrYsACgkQ4tZeNddg3dwvLwCdG43Mip83jsdE/NDL5Ujn2jcQ
1BUAniUk54jKjjoelXl9JHxOEH4sT/0g
=tzIY
-----END PGP SIGNATURE-----

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
anthony.minessale at g...
Guest





PostPosted: Fri Oct 31, 2008 8:25 am    Post subject: [Freeswitch-users] Problem with mod_openzap.c and SS7boost Reply with quote

edit mod_openzap.c

line 1046
add

zap_channel_init(zchan);

before

return SWITCH_CAUSE_SUCCESS;

see if that works.


On Fri, Oct 31, 2008 at 2:02 AM, Helmut Kuper <helmut.kuper@ewetel.de (helmut.kuper@ewetel.de)> wrote:
Quote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1


Hello,

just to put get some attention on this ...

regards
Helmut



Helmut Kuper schrieb:

Quote:
Hi Anthony,

ok, here the console output. There were no purple lines

2008-10-29 09:04:57 [DEBUG] switch_core_state_machine.c:144
switch_core_standard_on_execute()
sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) Execute
bridge(OpenZAP/1/a/44180002850)
2008-10-29 09:04:57 [DEBUG] ozmod_ss7_boost.c:225
ss7_boost_channel_request() TX EVENT: CALL_START:(80) [w1g1] CSid=2
Seq=1 Cn=[hk] Cd=[44180002850] Ci=[31152112850]
2008-10-29 09:04:58 [DEBUG] sofia.c:2269 sofia_handle_sip_i_state()
Channel sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) entering
state [terminated]
2008-10-29 09:04:58 [NOTICE] sofia.c:2765 sofia_handle_sip_i_state()
Hangup sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) [CS_EXECUTE]
[ORIGINATOR_CANCEL]
2008-10-29 09:04:58 [DEBUG] switch_channel.c:1449
switch_channel_perform_hangup() Send signal
sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) [KILL]
2008-10-29 09:04:58 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) [BREAK]
2008-10-29 09:04:58 [DEBUG] ozmod_ss7_boost.c:933 zap_ss7_boost_run() RX
EVENT (N): CALL_START_ACK:(81) [w1g30] Rc=0 CSid=2 Seq=3
2008-10-29 09:04:58 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-29 09:04:58 [DEBUG] ozmod_ss7_boost.c:297
handle_call_start_ack() Assign chan 1:29 (1:30) CSid=2
2008-10-29 09:04:58 [CRIT] ozmod_ss7_boost.c:245
ss7_boost_channel_request() setting init state to progress_media
2008-10-29 09:04:58 [DEBUG] mod_openzap.c:340 tech_init() Set codec PCMA
20ms
2008-10-29 09:04:58 [DEBUG] mod_openzap.c:1022
channel_outgoing_channel() Connect outbound channel OpenZAP/1:29/44180002850
2008-10-29 09:04:58 [NOTICE] switch_channel.c:553
switch_channel_set_name() New Channel OpenZAP/1:29/44180002850
[a231e1ef-2cfc-4de2-ab73-2175c184dff5]
2008-10-29 09:04:58 [DEBUG] mod_openzap.c:1031
channel_outgoing_channel() (OpenZAP/1:29/44180002850) State Change
CS_NEW -> CS_INIT
2008-10-29 09:04:58 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
OpenZAP/1:29/44180002850 [BREAK]
2008-10-29 09:04:58 [DEBUG] switch_ivr_originate.c:1598
switch_ivr_originate() Originate Cancelled by originator termination
Cause: 487 [ORIGINATOR_CANCEL]
2008-10-29 09:04:58 [NOTICE] switch_ivr_originate.c:1637
switch_ivr_originate() Hangup OpenZAP/1:29/44180002850 [CS_INIT]
[ORIGINATOR_CANCEL]
2008-10-29 09:04:58 [DEBUG] switch_channel.c:1449
switch_channel_perform_hangup() Send signal OpenZAP/1:29/44180002850 [KILL]
2008-10-29 09:04:58 [DEBUG] switch_core_session.c:727
switch_core_session_signal_state_change() Send signal
OpenZAP/1:29/44180002850 [BREAK]
2008-10-29 09:04:58 [INFO] mod_dptools.c:1843 audio_bridge_function()
Originate Failed. Cause: ORIGINATOR_CANCEL
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:432
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net)) State EXECUTE going
to sleep
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:367
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net)) Running State
Change CS_HANGUP
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net)) State HANGUP
2008-10-29 09:04:58 [DEBUG] mod_sofia.c:276 sofia_on_hangup() Channel
sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) hanging up, cause:
ORIGINATOR_CANCEL
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:46
switch_core_standard_on_hangup()
sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) Standard HANGUP,
cause: ORIGINATOR_CANCEL
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run()
(sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net)) State HANGUP going
to sleep
2008-10-29 09:04:58 [DEBUG] switch_core_session.c:860
switch_core_session_thread() Session 3
(sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net)) Locked, Waiting on
external entities
2008-10-29 09:04:58 [NOTICE] switch_core_session.c:878
switch_core_session_thread() Session 3
(sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net)) Ended
2008-10-29 09:04:58 [NOTICE] switch_core_session.c:880
switch_core_session_thread() Close Channel
sofia/softswitch_side/031152112850@sip1.ewetel.net (031152112850@sip1.ewetel.net) [CS_HANGUP]
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:367
switch_core_session_run() (OpenZAP/1:29/44180002850) Running State
Change CS_HANGUP
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run() (OpenZAP/1:29/44180002850) State HANGUP
2008-10-29 09:04:58 [DEBUG] mod_openzap.c:476 channel_on_hangup()
OpenZAP/1:29/44180002850 CHANNEL HANGUP
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:46
switch_core_standard_on_hangup() OpenZAP/1:29/44180002850 Standard
HANGUP, cause: ORIGINATOR_CANCEL
2008-10-29 09:04:58 [DEBUG] switch_core_state_machine.c:395
switch_core_session_run() (OpenZAP/1:29/44180002850) State HANGUP going
to sleep
2008-10-29 09:04:58 [DEBUG] switch_core_session.c:860
switch_core_session_thread() Session 4 (OpenZAP/1:29/44180002850)
Locked, Waiting on external entities
2008-10-29 09:04:58 [NOTICE] switch_core_session.c:878
switch_core_session_thread() Session 4 (OpenZAP/1:29/44180002850) Ended
2008-10-29 09:04:58 [NOTICE] switch_core_session.c:880
switch_core_session_thread() Close Channel OpenZAP/1:29/44180002850
[CS_HANGUP]
2008-10-29 09:04:58 [DEBUG] switch_core_codec.c:76
switch_core_session_set_read_codec() resetting to uninitilized codec,
setting to NULL
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:933 zap_ss7_boost_run() RX
EVENT (N): CALL_STOPPED:(85) [w1g31] Rc=16 CSid=1 Seq=4
2008-10-29 09:05:07 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:409 handle_call_stop()
Changing state on 1:30 from DOWN to TERMINATING
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:645 state_advance() 1:30
STATE [TERMINATING]
2008-10-29 09:05:07 [DEBUG] mod_openzap.c:1439 on_clear_channel_signal()
got clear channel sig [STOP]
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:783 state_advance()
Changing state on 1:30 from TERMINATING to HANGUP_COMPLETE
2008-10-29 09:05:07 [DEBUG] ss7_boost_client.c:216 ss7bc_exec_command()
TX EVENT (N): CALL_STOPPED_ACK:(86) [w1g31] Rc=0 CSid=0 Seq=2
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:645 state_advance() 1:30
STATE [HANGUP_COMPLETE]
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:737 state_advance()
Changing state on 1:30 from HANGUP_COMPLETE to DOWN
2008-10-29 09:05:07 [DEBUG] ozmod_ss7_boost.c:645 state_advance() 1:30
STATE [DOWN]
2008-10-29 09:05:07 [DEBUG] zap_io.c:1124 zap_channel_done() channel
done 1:30
2008-10-29 09:05:12 [DEBUG] ozmod_ss7_boost.c:933 zap_ss7_boost_run() RX
EVENT (N): CALL_ANSWERED:(84) [w1g30] Rc=0 CSid=2 Seq=5
2008-10-29 09:05:12 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:933 zap_ss7_boost_run() RX
EVENT (N): CALL_STOPPED:(85) [w1g30] Rc=16 CSid=2 Seq=6
2008-10-29 09:05:36 [DEBUG] ss7_boost_client.c:300
__ss7bc_connection_read() Rx sync ok
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:409 handle_call_stop()
Changing state on 1:29 from DOWN to TERMINATING
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:645 state_advance() 1:29
STATE [TERMINATING]
2008-10-29 09:05:36 [DEBUG] mod_openzap.c:1439 on_clear_channel_signal()
got clear channel sig [STOP]
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:783 state_advance()
Changing state on 1:29 from TERMINATING to HANGUP_COMPLETE
2008-10-29 09:05:36 [DEBUG] ss7_boost_client.c:216 ss7bc_exec_command()
TX EVENT (N): CALL_STOPPED_ACK:(86) [w1g30] Rc=0 CSid=0 Seq=3
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:645 state_advance() 1:29
STATE [HANGUP_COMPLETE]
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:737 state_advance()
Changing state on 1:29 from HANGUP_COMPLETE to DOWN
2008-10-29 09:05:36 [DEBUG] ozmod_ss7_boost.c:645 state_advance() 1:29
STATE [DOWN]
2008-10-29 09:05:36 [DEBUG] zap_io.c:1124 zap_channel_done() channel
done 1:29


Anthony Minessale schrieb:
Quote:
can you add more debug to the following places (with your patch disabled)

Quote:
ozmod_ss7_boost.c:245
zap_log(ZAP_LOG_CRIT, "setting init state to progress_media\n");

Quote:
zap_io.c:999
zap_log(ZAP_LOG_CRIT, "init_state=%d\n", zchan->init_state);


Quote:
mod_openzap.c:368
zap_log(ZAP_LOG_CRIT, "calling zap_channel_init\n");


Quote:
also look for any purple veto lines during the call.



_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org


iEYEARECAAYFAkkKrYsACgkQ4tZeNddg3dwvLwCdG43Mip83jsdE/NDL5Ujn2jcQ
1BUAniUk54jKjjoelXl9JHxOEH4sT/0g
=tzIY

-----END PGP SIGNATURE-----

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org





--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400
Back to top
helmut.kuper at ewetel.de
Guest





PostPosted: Fri Oct 31, 2008 9:19 am    Post subject: [Freeswitch-users] Problem with mod_openzap.c and SS7boost Reply with quote

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hello,

yes, that works so far Smile

Thank you very much.

regards
helmut



Anthony Minessale schrieb:
Quote:
edit mod_openzap.c

line 1046
add

zap_channel_init(zchan);

before

return SWITCH_CAUSE_SUCCESS;

see if that works.

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkkLENMACgkQ4tZeNddg3dztBQCdGaUqycNZKIeGRvTiY7m/8Wj0
vOEAn1qdJUoM3Ibm94I61MaqCB08NDTy
=gHs4
-----END PGP SIGNATURE-----

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
anthony.minessale at g...
Guest





PostPosted: Fri Oct 31, 2008 9:40 am    Post subject: [Freeswitch-users] Problem with mod_openzap.c and SS7boost Reply with quote

change is added to trunk

On Fri, Oct 31, 2008 at 9:06 AM, Helmut Kuper <helmut.kuper@ewetel.de (helmut.kuper@ewetel.de)> wrote:
Quote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hello,


yes, that works so far Smile

Thank you very much.

regards
helmut



Anthony Minessale schrieb:

Quote:
edit mod_openzap.c

line 1046
add

zap_channel_init(zchan);

before

return SWITCH_CAUSE_SUCCESS;

see if that works.


-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org


iEYEARECAAYFAkkLENMACgkQ4tZeNddg3dztBQCdGaUqycNZKIeGRvTiY7m/8Wj0
vOEAn1qdJUoM3Ibm94I61MaqCB08NDTy
=gHs4

-----END PGP SIGNATURE-----

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org





--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400
Back to top
Display posts from previous:   
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group

VoiceMeUp - Corporate & Wholesale VoIP Services