Sponsor: VoiceMeUp - Corporate & Wholesale VoIP Services

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

[Freeswitch-users] FS 1.0.2 Crash and burn

Goto page 1, 2  Next
 
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users
View previous topic :: View next topic  
Author Message
nik.middleton at noble...
Guest





PostPosted: Wed Feb 11, 2009 2:16 pm    Post subject: [Freeswitch-users] FS 1.0.2 Crash and burn Reply with quote

I have a situation where FS aborts

I’m running an lua script with mysql statements

First time it runs, on hangup I get

[CONSOLE] switch_core_memory.c:374 switch_core_memory_reclaim() Returning 4 recycled memory pool(s)

If I run it again, FS exits.

Should there be an error log somewhere that explains why FS dies?

Regards,
Back to top
brian at freeswitch.org
Guest





PostPosted: Wed Feb 11, 2009 2:20 pm    Post subject: [Freeswitch-users] FS 1.0.2 Crash and burn Reply with quote

Can you show us what you're doing?

/b

On Feb 11, 2009, at 1:15 PM, Nik Middleton wrote:
Quote:
I have a situation where FS aborts

I’m running an lua script with mysql statements

First time it runs, on hangup I get

[CONSOLE] switch_core_memory.c:374 switch_core_memory_reclaim() Returning 4 recycled memory pool(s)

If I run it again, FS exits.

Should there be an error log somewhere that explains why FS dies?

Regards,
Back to top
nik.middleton at noble...
Guest





PostPosted: Wed Feb 11, 2009 2:41 pm    Post subject: [Freeswitch-users] FS 1.0.2 Crash and burn Reply with quote

I was running in a screen session, so going back to the console it shows it’s a seg fault

2009-02-11 19:27:53 [NOTICE] sofia.c:3090 sofia_handle_sip_i_state() Hangup sofia/internal/1001@192.168.3.206 [CS_EXECUTE] [NORMAL_CLEARING]
Segmentation fault (core dumped)

Seg fault occurs on hangup

What seems to be causing the problem is an insert statement.

Note I’m using the protected call function to trap on any sql error (script will abort on error otherwise) but even calling it unprotected, the result is the same.

function updatecall()
query = "INSERT INTO CONTACT phonenum, group values 0771111111111, " .. CALLER ;
freeswitch.consoleLog("info", query.."\n");
res = assert (con:execute(query));
if unexpected_condition then error() end

end


if type == "dtmf" and obj['digit'] == '9' then
CALL_STATUS = "ORDER";
pcall(updateDNC);
session:streamFile("wait48.wav");
return "break";
end


function myHangupHook(s, status, arg)
freeswitch.consoleLog("info", " : They hung up on US!!!\n");
con:close()
env:close()

end



From: freeswitch-users-bounces@lists.freeswitch.org [mailto:freeswitch-users-bounces@lists.freeswitch.org] On Behalf Of Brian West
Sent: 11 February 2009 19:18
To: freeswitch-users@lists.freeswitch.org
Subject: Re: [Freeswitch-users] FS 1.0.2 Crash and burn


Can you show us what you're doing?


/b


On Feb 11, 2009, at 1:15 PM, Nik Middleton wrote:




I have a situation where FS aborts



I’m running an lua script with mysql statements



First time it runs, on hangup I get



[CONSOLE] switch_core_memory.c:374 switch_core_memory_reclaim() Returning 4 recycled memory pool(s)



If I run it again, FS exits.



Should there be an error log somewhere that explains why FS dies?



Regards,
Back to top
brian at freeswitch.org
Guest





PostPosted: Wed Feb 11, 2009 3:18 pm    Post subject: [Freeswitch-users] FS 1.0.2 Crash and burn Reply with quote

How about getting a backtrace of the core dump and opening a jira?

http://wiki.freeswitch.org/wiki/Reporting_Bugs


/b

On Feb 11, 2009, at 1:35 PM, Nik Middleton wrote:
Quote:
I was running in a screen session, so going back to the console it shows it’s a seg fault

2009-02-11 19:27:53 [NOTICE] sofia.c:3090 sofia_handle_sip_i_state() Hangup sofia/internal/1001@192.168.3.206 ([email]sofia/internal/1001@192.168.3.206[/email]) [CS_EXECUTE] [NORMAL_CLEARING]
Segmentation fault (core dumped)

Seg fault occurs on hangup

What seems to be causing the problem is an insert statement.

Note I’m using the protected call function to trap on any sql error (script will abort on error otherwise) but even calling it unprotected, the result is the same.

function updatecall()
query = "INSERT INTO CONTACT phonenum, group values 0771111111111, " .. CALLER ;
freeswitch.consoleLog("info", query.."\n");
res = assert (con:execute(query));
if unexpected_condition then error() end

end


if type == "dtmf" and obj['digit'] == '9' then
CALL_STATUS = "ORDER";
pcall(updateDNC);
session:streamFile("wait48.wav");
return "break";
end


function myHangupHook(s, status, arg)
freeswitch.consoleLog("info", " : They hung up on US!!!\n");
con:close()
env:close()

end
Back to top
nik.middleton at noble...
Guest





PostPosted: Wed Feb 11, 2009 3:21 pm    Post subject: [Freeswitch-users] FS 1.0.2 Crash and burn Reply with quote

Where is the core dump written?


From: freeswitch-users-bounces@lists.freeswitch.org [mailto:freeswitch-users-bounces@lists.freeswitch.org] On Behalf Of Brian West
Sent: 11 February 2009 19:38
To: freeswitch-users@lists.freeswitch.org
Subject: Re: [Freeswitch-users] FS 1.0.2 Crash and burn


How about getting a backtrace of the core dump and opening a jira?


http://wiki.freeswitch.org/wiki/Reporting_Bugs



/b


On Feb 11, 2009, at 1:35 PM, Nik Middleton wrote:




I was running in a screen session, so going back to the console it shows it’s a seg fault



2009-02-11 19:27:53 [NOTICE] sofia.c:3090 sofia_handle_sip_i_state() Hangup sofia/internal/1001@192.168.3.206 ([email]sofia/internal/1001@192.168.3.206[/email]) [CS_EXECUTE] [NORMAL_CLEARING]

Segmentation fault (core dumped)



Seg fault occurs on hangup



What seems to be causing the problem is an insert statement.



Note I’m using the protected call function to trap on any sql error (script will abort on error otherwise) but even calling it unprotected, the result is the same.



function updatecall()

query = "INSERT INTO CONTACT phonenum, group values 0771111111111, " .. CALLER ;

freeswitch.consoleLog("info", query.."\n");

res = assert (con:execute(query));

if unexpected_condition then error() end



end





if type == "dtmf" and obj['digit'] == '9' then

CALL_STATUS = "ORDER";

pcall(updateDNC);

session:streamFile("wait48.wav");

return "break";

end





function myHangupHook(s, status, arg)

freeswitch.consoleLog("info", " : They hung up on US!!!\n");

con:close()

env:close()



end
Back to top
nik.middleton at noble...
Guest





PostPosted: Wed Feb 11, 2009 3:23 pm    Post subject: [Freeswitch-users] FS 1.0.2 Crash and burn Reply with quote

Forget my last, followed the link

Regards,


From: freeswitch-users-bounces@lists.freeswitch.org [mailto:freeswitch-users-bounces@lists.freeswitch.org] On Behalf Of Brian West
Sent: 11 February 2009 19:38
To: freeswitch-users@lists.freeswitch.org
Subject: Re: [Freeswitch-users] FS 1.0.2 Crash and burn


How about getting a backtrace of the core dump and opening a jira?


http://wiki.freeswitch.org/wiki/Reporting_Bugs



/b


On Feb 11, 2009, at 1:35 PM, Nik Middleton wrote:




I was running in a screen session, so going back to the console it shows it’s a seg fault



2009-02-11 19:27:53 [NOTICE] sofia.c:3090 sofia_handle_sip_i_state() Hangup sofia/internal/1001@192.168.3.206 ([email]sofia/internal/1001@192.168.3.206[/email]) [CS_EXECUTE] [NORMAL_CLEARING]

Segmentation fault (core dumped)



Seg fault occurs on hangup



What seems to be causing the problem is an insert statement.



Note I’m using the protected call function to trap on any sql error (script will abort on error otherwise) but even calling it unprotected, the result is the same.



function updatecall()

query = "INSERT INTO CONTACT phonenum, group values 0771111111111, " .. CALLER ;

freeswitch.consoleLog("info", query.."\n");

res = assert (con:execute(query));

if unexpected_condition then error() end



end





if type == "dtmf" and obj['digit'] == '9' then

CALL_STATUS = "ORDER";

pcall(updateDNC);

session:streamFile("wait48.wav");

return "break";

end





function myHangupHook(s, status, arg)

freeswitch.consoleLog("info", " : They hung up on US!!!\n");

con:close()

env:close()



end
Back to top
brian at freeswitch.org
Guest





PostPosted: Wed Feb 11, 2009 3:25 pm    Post subject: [Freeswitch-users] FS 1.0.2 Crash and burn Reply with quote

Try starting it from your /usr/local/freeswitch/bin... ./freeswitch it'll dump in the same folder.

/b

On Feb 11, 2009, at 2:20 PM, Nik Middleton wrote:
Quote:
Where is the core dump written?
Back to top
anthony.minessale at g...
Guest





PostPosted: Wed Feb 11, 2009 4:43 pm    Post subject: [Freeswitch-users] FS 1.0.2 Crash and burn Reply with quote

and make sure it's svn trunk or at least a daily snapshot and not 1.0.2


On Wed, Feb 11, 2009 at 2:23 PM, Brian West <brian@freeswitch.org (brian@freeswitch.org)> wrote:
Quote:
Try starting it from your /usr/local/freeswitch/bin... ./freeswitch it'll dump in the same folder.

/b

On Feb 11, 2009, at 2:20 PM, Nik Middleton wrote:

Quote:
Where is the core dump written?






_______________________________________________
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
nik.middleton at noble...
Guest





PostPosted: Wed Feb 11, 2009 6:39 pm    Post subject: [Freeswitch-users] FS 1.0.2 Crash and burn Reply with quote

I’ve abandoned LUA.

All sorts of problems (DTMF etc). Also reports of memory leaks when using MYSQL driver.

Looking on the WIKI, JavaScript seems very well supported; PLUS DTMF works just fine (pulling my hair out on LUA)

Guess I’m going to follow the path of least resistance on this one and use JS and ODBC

Regards,


From: freeswitch-users-bounces@lists.freeswitch.org [mailto:freeswitch-users-bounces@lists.freeswitch.org] On Behalf Of Brian West
Sent: 11 February 2009 20:23
To: freeswitch-users@lists.freeswitch.org
Subject: Re: [Freeswitch-users] FS 1.0.2 Crash and burn


Try starting it from your /usr/local/freeswitch/bin... ./freeswitch it'll dump in the same folder.


/b


On Feb 11, 2009, at 2:20 PM, Nik Middleton wrote:




Where is the core dump written?
Back to top
brian at freeswitch.org
Guest





PostPosted: Wed Feb 11, 2009 6:52 pm    Post subject: [Freeswitch-users] FS 1.0.2 Crash and burn Reply with quote

Lua has known issues with MySQL you must use latest SVN builds of the luasql driver for that to avoid it.. and still its not stellar.. the unixODBC one on the other hand works fine.

/b

On Feb 11, 2009, at 5:36 PM, Nik Middleton wrote:
Quote:
I’ve abandoned LUA.

All sorts of problems (DTMF etc). Also reports of memory leaks when using MYSQL driver.

Looking on the WIKI, JavaScript seems very well supported; PLUS DTMF works just fine (pulling my hair out on LUA)

Guess I’m going to follow the path of least resistance on this one and use JS and ODBC

Regards,

Back to top
anthony.minessale at g...
Guest





PostPosted: Wed Feb 11, 2009 11:29 pm    Post subject: [Freeswitch-users] FS 1.0.2 Crash and burn Reply with quote

There is always C, it's actually considered a high level language by many Wink


On Wed, Feb 11, 2009 at 5:50 PM, Brian West <brian@freeswitch.org (brian@freeswitch.org)> wrote:
Quote:
Lua has known issues with MySQL you must use latest SVN builds of the luasql driver for that to avoid it.. and still its not stellar.. the unixODBC one on the other hand works fine.

/b

On Feb 11, 2009, at 5:36 PM, Nik Middleton wrote:

Quote:
I've abandoned LUA.

All sorts of problems (DTMF etc). Also reports of memory leaks when using MYSQL driver.

Looking on the WIKI, JavaScript seems very well supported; PLUS DTMF works just fine (pulling my hair out on LUA)

Guess I'm going to follow the path of least resistance on this one and use JS and ODBC

Regards,







_______________________________________________
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
nik.middleton at noble...
Guest





PostPosted: Fri Feb 13, 2009 6:07 pm    Post subject: [Freeswitch-users] FS 1.0.2 Crash and burn Reply with quote

<groan> Guess I’ll have to dust off K&R. Having made the mindset leap to c++ I find C very procedural. Still would be like old times. Code I’ve looked at so far is very neat, but boy is there a lack of in-line comments. Haven’t looked at the main source yet though. I always used to work on 3 lines of comments to 1 major line of code. Call me pedantic, but it aids maintenance.

I’ve always thought of C as a low level language, just up from assembler, and nearly as efficient. An for me, low level is good not bad.

Regards



From: freeswitch-users-bounces@lists.freeswitch.org [mailto:freeswitch-users-bounces@lists.freeswitch.org] On Behalf Of Anthony Minessale
Sent: 12 February 2009 04:26
To: freeswitch-users@lists.freeswitch.org
Subject: Re: [Freeswitch-users] FS 1.0.2 Crash and burn


There is always C, it's actually considered a high level language by many Wink


On Wed, Feb 11, 2009 at 5:50 PM, Brian West <brian@freeswitch.org (brian@freeswitch.org)> wrote:
Lua has known issues with MySQL you must use latest SVN builds of the luasql driver for that to avoid it.. and still its not stellar.. the unixODBC one on the other hand works fine.


/b


On Feb 11, 2009, at 5:36 PM, Nik Middleton wrote:




I've abandoned LUA.



All sorts of problems (DTMF etc). Also reports of memory leaks when using MYSQL driver.



Looking on the WIKI, JavaScript seems very well supported; PLUS DTMF works just fine (pulling my hair out on LUA)



Guess I'm going to follow the path of least resistance on this one and use JS and ODBC



Regards,









_______________________________________________
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
anthony.minessale at g...
Guest





PostPosted: Fri Feb 13, 2009 6:23 pm    Post subject: [Freeswitch-users] FS 1.0.2 Crash and burn Reply with quote

modules can be c++ too.

See mod_opal , mod_python, mod_java, mod_soundtouch, mod_managed and mod_perl

all use switch_cpp.cpp a wrapper used to bridge into scripting langs.





On Fri, Feb 13, 2009 at 5:04 PM, Nik Middleton <nik.middleton@noblesolutions.co.uk (nik.middleton@noblesolutions.co.uk)> wrote:
Quote:

<groan> Guess I'll have to dust off K&R. Having made the mindset leap to c++ I find C very procedural. Still would be like old times. Code I've looked at so far is very neat, but boy is there a lack of in-line comments. Haven't looked at the main source yet though. I always used to work on 3 lines of comments to 1 major line of code. Call me pedantic, but it aids maintenance.

I've always thought of C as a low level language, just up from assembler, and nearly as efficient. An for me, low level is good not bad.

Regards



From: freeswitch-users-bounces@lists.freeswitch.org (freeswitch-users-bounces@lists.freeswitch.org) [mailto:freeswitch-users-bounces@lists.freeswitch.org (freeswitch-users-bounces@lists.freeswitch.org)] On Behalf Of Anthony Minessale
Sent: 12 February 2009 04:26
To: freeswitch-users@lists.freeswitch.org (freeswitch-users@lists.freeswitch.org)
Subject: Re: [Freeswitch-users] FS 1.0.2 Crash and burn



There is always C, it's actually considered a high level language by many Wink



On Wed, Feb 11, 2009 at 5:50 PM, Brian West <brian@freeswitch.org (brian@freeswitch.org)> wrote:
Lua has known issues with MySQL you must use latest SVN builds of the luasql driver for that to avoid it.. and still its not stellar.. the unixODBC one on the other hand works fine.


/b


On Feb 11, 2009, at 5:36 PM, Nik Middleton wrote:




I've abandoned LUA.



All sorts of problems (DTMF etc). Also reports of memory leaks when using MYSQL driver.



Looking on the WIKI, JavaScript seems very well supported; PLUS DTMF works just fine (pulling my hair out on LUA)



Guess I'm going to follow the path of least resistance on this one and use JS and ODBC



Regards,









_______________________________________________
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




_______________________________________________
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
jason at jasonjgw.net
Guest





PostPosted: Fri Feb 13, 2009 6:26 pm    Post subject: [Freeswitch-users] FS 1.0.2 Crash and burn Reply with quote

Nik Middleton <nik.middleton@noblesolutions.co.uk> wrote:
Quote:
Code
I've looked at so far is very neat, but boy is there a lack of in-line
comments. Haven't looked at the main source yet though. I always used
to work on 3 lines of comments to 1 major line of code. Call me
pedantic, but it aids maintenance.

I find the FreeSWITCH code quite readable. Public API functions have comments,
which are all that we need, I think.


_______________________________________________
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
nik.middleton at noble...
Guest





PostPosted: Fri Feb 13, 2009 6:42 pm    Post subject: [Freeswitch-users] FS 1.0.2 Crash and burn Reply with quote

That would assume that the underlying code is perfect, which it probably
isn't. Not knocking the efforts, but in my view, you can't have too
much in line documentation. I hope to make a contribution shortly.
Right now I'm updating the WIKI where appropriate. Top level examples
should work with a cut and paste, if they don't you're going to alienate
new entrants.

Regards


-----Original Message-----
From: freeswitch-users-bounces@lists.freeswitch.org
[mailto:freeswitch-users-bounces@lists.freeswitch.org] On Behalf Of
Jason White
Sent: 13 February 2009 23:24
To: freeswitch-users@lists.freeswitch.org
Subject: Re: [Freeswitch-users] FS 1.0.2 Crash and burn

Nik Middleton <nik.middleton@noblesolutions.co.uk> wrote:
Quote:
Code
I've looked at so far is very neat, but boy is there a lack of in-line
comments. Haven't looked at the main source yet though. I always
used
Quote:
to work on 3 lines of comments to 1 major line of code. Call me
pedantic, but it aids maintenance.

I find the FreeSWITCH code quite readable. Public API functions have
comments,
which are all that we need, I think.


_______________________________________________
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

_______________________________________________
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
Display posts from previous:   
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users All times are GMT - 5 Hours
Goto page 1, 2  Next
Page 1 of 2

 
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