VoIP Mailing List Archives
Mailing list archives for the VoIP community |
|
View previous topic :: View next topic |
Author |
Message |
helmut.kuper at ewetel.de Guest
|
Posted: Sat Jan 17, 2009 11:26 am Post subject: [Freeswitch-users] Q931 decoding |
|
|
Hello,
if anyone is interessted in a Q931 decoder for FS, I found a way to get
FS's Q931 debug hexdumps decoded in wireshark. It's quite simple and
mainly about encapsulating each Q931 dump into a TPKT paket and that one
in a TCP/IP paket and to put all TCP/IP pakets into a pcap file.
regards
helmut
_______________________________________________
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 |
|
|
brian at freeswitch.org Guest
|
Posted: Sat Jan 17, 2009 11:27 am Post subject: [Freeswitch-users] Q931 decoding |
|
|
Any automated way of doing this? Open a Jira on it.. it would be neat
to be able to save the q931 into a pcap file.... maybe libpcap can help?
/b
On Jan 17, 2009, at 10:16 AM, Helmut Kuper wrote:
Quote: | Hello,
if anyone is interessted in a Q931 decoder for FS, I found a way to
get
FS's Q931 debug hexdumps decoded in wireshark. It's quite simple and
mainly about encapsulating each Q931 dump into a TPKT paket and that
one
in a TCP/IP paket and to put all TCP/IP pakets into a pcap file.
regards
helmut
|
_______________________________________________
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
|
Posted: Sat Jan 17, 2009 12:06 pm Post subject: [Freeswitch-users] Q931 decoding |
|
|
Hi Brian,
currently it's a simple perl script which greps all Q931 hexdumps from
FS logfile converting them to a TPKT packet, and writing those to a
separate local file (wireshark's text2pcap file format). This 1st step
is easy to put right into FS ozmod_isdn debug code.
The 2nd step is to convert the new file into a .pcap file with adding
TCP/IP dummy packet in front of each TPKT packet. This is done via
test2pcap. This .pcap file is ready to be decoded by wireshark.
I put both steps into a little shell script and added a 3rd step to get
those .pcap file emailed from the Server to my Desktop.
regards
helmut
Brian West schrieb:
Quote: | Any automated way of doing this? Open a Jira on it.. it would be neat
to be able to save the q931 into a pcap file.... maybe libpcap can help?
/b
|
_______________________________________________
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 |
|
|
brian at freeswitch.org Guest
|
Posted: Sat Jan 17, 2009 12:21 pm Post subject: [Freeswitch-users] Q931 decoding |
|
|
Maybe open a jira with this info? Maybe it can all be done as a one
step process in the ozmod_isdn
/b
On Jan 17, 2009, at 10:58 AM, Helmut Kuper wrote:
Quote: | Hi Brian,
currently it's a simple perl script which greps all Q931 hexdumps from
FS logfile converting them to a TPKT packet, and writing those to a
separate local file (wireshark's text2pcap file format). This 1st step
is easy to put right into FS ozmod_isdn debug code.
The 2nd step is to convert the new file into a .pcap file with adding
TCP/IP dummy packet in front of each TPKT packet. This is done via
test2pcap. This .pcap file is ready to be decoded by wireshark.
I put both steps into a little shell script and added a 3rd step to
get
those .pcap file emailed from the Server to my Desktop.
regards
helmut
|
_______________________________________________
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 |
|
|
msc at freeswitch.org Guest
|
Posted: Sat Jan 17, 2009 3:46 pm Post subject: [Freeswitch-users] Q931 decoding |
|
|
Guys this is awesome! Helmut, if you need any help with jira just let
me know.
-MC
Sent from my iPhone
On Jan 17, 2009, at 9:20 AM, Brian West <brian@freeswitch.org> wrote:
Quote: | Maybe open a jira with this info? Maybe it can all be done as a one
step process in the ozmod_isdn
/b
On Jan 17, 2009, at 10:58 AM, Helmut Kuper wrote:
Quote: | Hi Brian,
currently it's a simple perl script which greps all Q931 hexdumps
from
FS logfile converting them to a TPKT packet, and writing those to a
separate local file (wireshark's text2pcap file format). This 1st
step
is easy to put right into FS ozmod_isdn debug code.
The 2nd step is to convert the new file into a .pcap file with adding
TCP/IP dummy packet in front of each TPKT packet. This is done via
test2pcap. This .pcap file is ready to be decoded by wireshark.
I put both steps into a little shell script and added a 3rd step to
get
those .pcap file emailed from the Server to my Desktop.
regards
helmut
|
_______________________________________________
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 |
|
|
helmut.kuper at ewetel.de Guest
|
Posted: Mon Jan 19, 2009 3:53 am Post subject: [Freeswitch-users] Q931 decoding |
|
|
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello Michael,
I'm currently on my way to put all those shell and perl stuff into C
code. As soon as that works I try to put it in ozmod_isdn. So after that
FS will be able to enable Q931Pcapfile generation. After that I will
send the patch to FS.
Hope this is ok for you.
What do you mean with "help with jira"? I thought it is just a bug
tracker... If it's also a feature request tool, I will feed it with
documentation about what I did.
regards
helmut
Am 17.01.2009 21:44, schrieb Michael S Collins:
Quote: | Guys this is awesome! Helmut, if you need any help with jira just let
me know.
-MC
Sent from my iPhone
On Jan 17, 2009, at 9:20 AM, Brian West <brian@freeswitch.org> wrote:
Quote: | Maybe open a jira with this info? Maybe it can all be done as a one
step process in the ozmod_isdn
/b
On Jan 17, 2009, at 10:58 AM, Helmut Kuper wrote:
Quote: | Hi Brian,
currently it's a simple perl script which greps all Q931 hexdumps
from
FS logfile converting them to a TPKT packet, and writing those to a
separate local file (wireshark's text2pcap file format). This 1st
step
is easy to put right into FS ozmod_isdn debug code.
The 2nd step is to convert the new file into a .pcap file with adding
TCP/IP dummy packet in front of each TPKT packet. This is done via
test2pcap. This .pcap file is ready to be decoded by wireshark.
I put both steps into a little shell script and added a 3rd step to
get
those .pcap file emailed from the Server to my Desktop.
regards
helmut
|
_______________________________________________
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
| -----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
iEYEARECAAYFAkl0PPgACgkQ4tZeNddg3dwKMACfYYHglospD7FJeY4Ne2Q8qBWJ
pNIAoKtEXQ+RnVg2ahySjd5zKfUcOowQ
=1abg
-----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
|
Posted: Mon Jan 19, 2009 8:56 am Post subject: [Freeswitch-users] Q931 decoding |
|
|
jira is an issue tracker in general.
We use it for bugs, features, bounties and anything else that is an ongoing process that
we want to do a workflow on. There is an issue type of new feature you can file such things under
and assign it to yourself so we can track and complete the task in a managed way.
On Mon, Jan 19, 2009 at 2:42 AM, Helmut Kuper <helmut.kuper@ewetel.de (helmut.kuper@ewetel.de)> wrote:
--
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 |
|
|
michal.bielicki at voi... Guest
|
Posted: Mon Jan 19, 2009 8:57 am Post subject: [Freeswitch-users] Q931 decoding |
|
|
It is both
Helmut Kuper schrieb: |
|
Back to top |
|
|
saigop at gmail.com Guest
|
Posted: Mon Jan 19, 2009 1:45 pm Post subject: [Freeswitch-users] Q931 decoding |
|
|
How can I capture Q931 packets by separating the D channel and B channel?
On Mon, Jan 19, 2009 at 7:23 PM, Michal Bielicki <michal.bielicki@voiceworks.pl> wrote:
--
Thank you with regards,
Gopal,
PeopleTech Systems Private Limited
www.peopletech.co.in |
|
Back to top |
|
|
brian at freeswitch.org Guest
|
Posted: Mon Jan 19, 2009 1:56 pm Post subject: [Freeswitch-users] Q931 decoding |
|
|
Well the D channel is the only channel where any Q931 should be
present. If you happen to have it on a B channel something has gone
horribly wrong!
/b
On Jan 19, 2009, at 12:42 PM, Gopalakrishnan A.N wrote:
Quote: | How can I capture Q931 packets by separating the D channel and B
channel?
|
_______________________________________________
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 |
|
|
msc at freeswitch.org Guest
|
Posted: Mon Jan 19, 2009 2:01 pm Post subject: [Freeswitch-users] Q931 decoding |
|
|
Until Helmut gets his script, etc. all set the only choice you have is
to capture the debug output on the command line.
-MC
On Mon, Jan 19, 2009 at 10:42 AM, Gopalakrishnan A.N <saigop@gmail.com> wrote:
Quote: | How can I capture Q931 packets by separating the D channel and B channel?
On Mon, Jan 19, 2009 at 7:23 PM, Michal Bielicki
<michal.bielicki@voiceworks.pl> wrote:
Quote: |
It is both
Helmut Kuper schrieb:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello Michael,
I'm currently on my way to put all those shell and perl stuff into C
code. As soon as that works I try to put it in ozmod_isdn. So after that
FS will be able to enable Q931Pcapfile generation. After that I will
send the patch to FS.
Hope this is ok for you.
What do you mean with "help with jira"? I thought it is just a bug
tracker... If it's also a feature request tool, I will feed it with
documentation about what I did.
regards
helmut
Am 17.01.2009 21:44, schrieb Michael S Collins:
Guys this is awesome! Helmut, if you need any help with jira just let
me know.
-MC
Sent from my iPhone
On Jan 17, 2009, at 9:20 AM, Brian West <brian@freeswitch.org> wrote:
Maybe open a jira with this info? Maybe it can all be done as a one
step process in the ozmod_isdn
/b
On Jan 17, 2009, at 10:58 AM, Helmut Kuper wrote:
Hi Brian,
currently it's a simple perl script which greps all Q931 hexdumps
from
FS logfile converting them to a TPKT packet, and writing those to a
separate local file (wireshark's text2pcap file format). This 1st
step
is easy to put right into FS ozmod_isdn debug code.
The 2nd step is to convert the new file into a .pcap file with adding
TCP/IP dummy packet in front of each TPKT packet. This is done via
test2pcap. This .pcap file is ready to be decoded by wireshark.
I put both steps into a little shell script and added a 3rd step to
get
those .pcap file emailed from the Server to my Desktop.
regards
helmut
_______________________________________________
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
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
iEYEARECAAYFAkl0PPgACgkQ4tZeNddg3dwKMACfYYHglospD7FJeY4Ne2Q8qBWJ
pNIAoKtEXQ+RnVg2ahySjd5zKfUcOowQ
=1abg
-----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
_______________________________________________
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
|
--
Thank you with regards,
Gopal,
PeopleTech Systems Private Limited
www.peopletech.co.in
_______________________________________________
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 |
|
|
helmut.kuper at ewetel.de Guest
|
Posted: Wed Jan 21, 2009 7:04 am Post subject: [Freeswitch-users] Q931 decoding |
|
|
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello,
just an update about my progress in this.
Currently I have working C code which creates a pcap file containing all
needed protocoll headers in front of the Q931 dump. I use libpcap to
create the pcap file. The protocol addresses of each protocol header
structure are dynamically set by the code to reflect direction, sequence
and timeline of each Q931 packet in whireshark. Wireshark can read and
decode the current packets generated by my C code correctly.
regards
helmut
Am 19.01.2009 19:46, schrieb Michael Collins:
Quote: | Until Helmut gets his script, etc. all set the only choice you have is
to capture the debug output on the command line.
-MC
| -----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
iEYEARECAAYFAkl3DfUACgkQ4tZeNddg3dz5QACePWZ6l5SEWcirI8gE4ad4N4tF
rP0AoIerlF8nk/IB//eEHqSP8j5C8B5Z
=rmAo
-----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
|
Posted: Wed Jan 21, 2009 8:54 am Post subject: [Freeswitch-users] Q931 decoding |
|
|
Do you have it integrated into openzap or just standalone?
We can give you commit access to openzap if you want to maintain the patch in tree if you'd like.
On Wed, Jan 21, 2009 at 5:58 AM, Helmut Kuper <helmut.kuper@ewetel.de (helmut.kuper@ewetel.de)> wrote:
Quote: | -----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello,
just an update about my progress in this.
Currently I have working C code which creates a pcap file containing all
needed protocoll headers in front of the Q931 dump. I use libpcap to
create the pcap file. The protocol addresses of each protocol header
structure are dynamically set by the code to reflect direction, sequence
and timeline of each Q931 packet in whireshark. Wireshark can read and
decode the current packets generated by my C code correctly.
regards
helmut
Am 19.01.2009 19:46, schrieb Michael Collins:
Quote: | Until Helmut gets his script, etc. all set the only choice you have is
to capture the debug output on the command line.
-MC
|
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
iEYEARECAAYFAkl3DfUACgkQ4tZeNddg3dz5QACePWZ6l5SEWcirI8gE4ad4N4tF
rP0AoIerlF8nk/IB//eEHqSP8j5C8B5Z
=rmAo
-----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 |
|
|
msc at freeswitch.org Guest
|
Posted: Wed Jan 21, 2009 8:58 am Post subject: [Freeswitch-users] Q931 decoding |
|
|
On Wed, Jan 21, 2009 at 3:58 AM, Helmut Kuper <helmut.kuper@ewetel.de> wrote:
Quote: | -----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello,
just an update about my progress in this.
Currently I have working C code which creates a pcap file containing all
needed protocoll headers in front of the Q931 dump. I use libpcap to
create the pcap file. The protocol addresses of each protocol header
structure are dynamically set by the code to reflect direction, sequence
and timeline of each Q931 packet in whireshark. Wireshark can read and
decode the current packets generated by my C code correctly.
|
This is fantastic! How close are you to being ready for others to try
it out? Tony and Mike are very interested in seeing this move forward
because it will make their job go a lot faster when doing PRI/BRI
work.
Thanks!
-MC
Quote: |
regards
helmut
Am 19.01.2009 19:46, schrieb Michael Collins:
Quote: | Until Helmut gets his script, etc. all set the only choice you have is
to capture the debug output on the command line.
-MC
| -----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
iEYEARECAAYFAkl3DfUACgkQ4tZeNddg3dz5QACePWZ6l5SEWcirI8gE4ad4N4tF
rP0AoIerlF8nk/IB//eEHqSP8j5C8B5Z
=rmAo
-----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
|
_______________________________________________
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
|
Posted: Wed Jan 21, 2009 10:09 am Post subject: [Freeswitch-users] Q931 decoding |
|
|
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello,
It's a standalone program to profe concept. So I think I will get it
working this week as standalone.
Next week I plan to start to integrate the code into openzap/ozmod_isdn.c
Biggest problem currently (in my head) is the file handling of the pcap
file. Currently I have only one file which is opened at startup time and
closed during shutdown. In between there is no checking for a certain
file size to make a file cycle decision or stopping and closing the
file. I guess it is better to have a FS console command to start stop
the trace on demand instead of having a config parameter which enables
the tracing during FS lifetime.
Further problem is that I have no way to test the code on a windows
machine. So I have no idea whether it compiles on windows or not.
Thanks for your support so far.
regards
Helmut
Am 21.01.2009 14:53, schrieb Anthony Minessale:
Quote: | Do you have it integrated into openzap or just standalone?
We can give you commit access to openzap if you want to maintain the patch
in tree if you'd like.
On Wed, Jan 21, 2009 at 5:58 AM, Helmut Kuper <helmut.kuper@ewetel.de>wrote:
Hello,
just an update about my progress in this.
Currently I have working C code which creates a pcap file containing all
needed protocoll headers in front of the Q931 dump. I use libpcap to
create the pcap file. The protocol addresses of each protocol header
structure are dynamically set by the code to reflect direction, sequence
and timeline of each Q931 packet in whireshark. Wireshark can read and
decode the current packets generated by my C code correctly.
regards
helmut
Am 19.01.2009 19:46, schrieb Michael Collins:
Quote: | Quote: | Quote: | Until Helmut gets his script, etc. all set the only choice you have is
to capture the debug output on the command line.
-MC
|
|
|
| _______________________________________________
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
Quote: | ------------------------------------------------------------------------
|
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
iEYEARECAAYFAkl3OOAACgkQ4tZeNddg3dyorQCfReKgMKGtBl+k7gIVwkoqXHRP
gc0An0iY8sevWPttx3c4oEWZd9tepGxP
=gN/s
-----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 |
|
|
|
|
|
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
|