[prev in list] [next in list] [prev in thread] [next in thread] 

List:       freeswitch-dev
Subject:    Re: [Freeswitch-dev] Linking C++ .so Into Custom Freeswitch Module
From:       Anthony Minessale <anthony.minessale () gmail ! com>
Date:       2012-09-30 17:23:50
Message-ID: CAKbxfG_ni=PwwsU-EwKTbjRMoVEW+UAcKrrsUDgoLSB86Xwx2w () mail ! gmail ! com
[Download RAW message or body]

[Attachment #2 (multipart/alternative)]


I believe you can do a space sep list on LOCAL_LIBADD an LOCAL_LDFLAGS

On Sat, Sep 29, 2012 at 10:42 PM, Seven Du <dujinfang@gmail.com> wrote:

>  The following Makefile works for me when I'm working on mod_mp4v2
>
> LOCAL_CFLAGS=-I./mp4v2-2.0.0/include/mp4v2
> LOCAL_LDFLAGS=-static ./mp4v2-2.0.0/.libs/libmp4v2.a
>
> BASE=../../../..
> include $(BASE)/build/modmake.rules
>
> --
> Seven Du
> Sent with Sparrow <http://www.sparrowmailapp.com/?sig>
>
> On Sunday, September 30, 2012 at 10:46 AM, Jon Lederman wrote:
>
> Hi Anthony,
>
> I had a question about the LOCAL_LIBADD syntax.  I have several libraries
> I need to add.
> When I tried:
>
> LOCAL_LIBADD=path_to_lib1/lib1.a
> LOCAL_LIBADD+=path_to_lib2/lib2.a
> LOCAL_LIBADD+=path_to_lib3/lib3.a
>
> However, this didn't seem to work.  Does the += syntax append libraries?
>  I was able to get around this problem by extracting the .a files and the
> combining them in a single .a file, which I was able to load into audio
> weaver.  What is the correct syntax to add multiple libraries in the
> makefile?
>
> Thanks.
>
> -Jon
> On Sep 28, 2012, at 9:26 AM, Anthony Minessale <
> anthony.minessale@gmail.com> wrote:
>
> if you want to do it that way then build a static version of your aw.so
> and use the .a in the LOCAL_LIBADD
>
> if you want to do the .so it would have to be installed somewhere and in
> the LD_LIBRARY_PATH at runtime
>
> On Fri, Sep 28, 2012 at 10:56 AM, Jon Lederman <jon2718@gmail.com> wrote:
>
> Hi,
>
> Thanks for your reply.  The problem is that I'm not sure I'm linking the
> external libs correctly.  My module makefile is:
>
> BASE=../../../..
> LOCAL_LIBADD+=./lib/aw.so
> include $(BASE)/build/modmake.rules
>
> Shouldn't LOCAL_LIBADD be enough.  Or do I need additional statements in
> my makefile.  The aw.so defines the symbol in question yet I still receive
> the missing symbol message when I try to load the module.
>
> Any help would be greatly appreciated.
>
> Thanks in advance.
>
> Jon
>
>
> On Sep 28, 2012, at 11:27 AM, Anthony Minessale <
> anthony.minessale@gmail.com> wrote:
>
> to auto-load you also need modules.conf.xml modules.conf is only for
> building.
>
> The module can't load because it's missing the symbol:
>
> ZN10CAWETalker9ConfigureEPKc
>
> So you need to link in any external libs you might be using into your .so
>
>
> On Fri, Sep 28, 2012 at 12:05 AM, Jon Lederman <jon2718@gmail.com> wrote:
>
> Hi,
>
> I am writing a custom module called mod_aw for freeswitch that uses a
> dynamic library called aw.so containing a c++ class.  I edited the makefile
> for my module to:
>
> BASE=../../../..
> LOCAL_LIBADD+=./lib/aw.so
> include $(BASE)/build/modmake.rules
>
> I am able to build the module and also modified modules.conf to include
> the new module.
>
> When I start freeswitch, I don't see a message that the module was loaded.
>
> When I type: reload mod_aw I receive the following error:
>
> 2012-09-28 04:49:52.738493 [CRIT] switch_loadable_module.c:1310 Error
> Loading module /usr/local/freeswitch/mod/mod_aw.so
> **/usr/local/freeswitch/mod/mod_aw.so: undefined symbol:
> _ZN10CAWETalker9ConfigureEPKc**
>
> -ERR unloading module [No such module!]
> +OK Reloading XML
> -ERR loading module [module load file routine returned an error]
>
> I know the library works as I have tried it in another program outside of
> freeswitch.  I am not sure what I am doing wrong.  I am wondering whether I
> need to provide extern "C" linkage for the c++ library.  However, I only
> have the .h file and .so file for the library.  Or, do I need to add
> something to my Makefile.
>
> Any help on how to configure this would be greatly appreciated.
>
> Thank you in advance.
>
> -Jon
> _________________________________________________________________________
> Professional FreeSWITCH Consulting Services:
> consulting@freeswitch.org
> http://www.freeswitchsolutions.com
>
> FreeSWITCH-powered IP PBX: The CudaTel Communication Server
> http://www.cudatel.com
>
> Official FreeSWITCH Sites
> http://www.freeswitch.org
> http://wiki.freeswitch.org
> http://www.cluecon.com
>
> FreeSWITCH-dev mailing list
> FreeSWITCH-dev@lists.freeswitch.org
> http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev
> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-dev
> http://www.freeswitch.org
>
>
>
>
> --
> Anthony Minessale II
>
> FreeSWITCH http://www.freeswitch.org/
> ClueCon http://www.cluecon.com/
> Twitter: http://twitter.com/FreeSWITCH_wire
>
> AIM: anthm
> MSN:anthony_minessale@hotmail.com
> GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com
> IRC: irc.freenode.net #freeswitch
>
> FreeSWITCH Developer Conference
> sip:888@conference.freeswitch.org
> googletalk:conf+888@conference.freeswitch.org
> pstn:+19193869900
>  _________________________________________________________________________
> Professional FreeSWITCH Consulting Services:
> consulting@freeswitch.org
> http://www.freeswitchsolutions.com
>
> FreeSWITCH-powered IP PBX: The CudaTel Communication Server
> http://www.cudatel.com
>
> Official FreeSWITCH Sites
> http://www.freeswitch.org
> http://wiki.freeswitch.org
> http://www.cluecon.com
>
> FreeSWITCH-dev mailing list
> FreeSWITCH-dev@lists.freeswitch.org
> http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev
> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-dev
> http://www.freeswitch.org
>
>
> _________________________________________________________________________
> Professional FreeSWITCH Consulting Services:
> consulting@freeswitch.org
> http://www.freeswitchsolutions.com
>
> FreeSWITCH-powered IP PBX: The CudaTel Communication Server
> http://www.cudatel.com
>
> Official FreeSWITCH Sites
> http://www.freeswitch.org
> http://wiki.freeswitch.org
> http://www.cluecon.com
>
> FreeSWITCH-dev mailing list
> FreeSWITCH-dev@lists.freeswitch.org
> http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev
> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-dev
> http://www.freeswitch.org
>
>
>
>
> --
> Anthony Minessale II
>
> FreeSWITCH http://www.freeswitch.org/
> ClueCon http://www.cluecon.com/
> Twitter: http://twitter.com/FreeSWITCH_wire
>
> AIM: anthm
> MSN:anthony_minessale@hotmail.com
> GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com
> IRC: irc.freenode.net #freeswitch
>
> FreeSWITCH Developer Conference
> sip:888@conference.freeswitch.org
> googletalk:conf+888@conference.freeswitch.org
> pstn:+19193869900
>  _________________________________________________________________________
> Professional FreeSWITCH Consulting Services:
> consulting@freeswitch.org
> http://www.freeswitchsolutions.com
>
> FreeSWITCH-powered IP PBX: The CudaTel Communication Server
> http://www.cudatel.com
>
> Official FreeSWITCH Sites
> http://www.freeswitch.org
> http://wiki.freeswitch.org
> http://www.cluecon.com
>
> FreeSWITCH-dev mailing list
> FreeSWITCH-dev@lists.freeswitch.org
> http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev
> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-dev
> http://www.freeswitch.org
>
>
> _________________________________________________________________________
> Professional FreeSWITCH Consulting Services:
> consulting@freeswitch.org
> http://www.freeswitchsolutions.com
>
> FreeSWITCH-powered IP PBX: The CudaTel Communication Server
> http://www.cudatel.com
>
> Official FreeSWITCH Sites
> http://www.freeswitch.org
> http://wiki.freeswitch.org
> http://www.cluecon.com
>
> FreeSWITCH-dev mailing list
> FreeSWITCH-dev@lists.freeswitch.org
> http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev
> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-dev
> http://www.freeswitch.org
>
>
>
> _________________________________________________________________________
> Professional FreeSWITCH Consulting Services:
> consulting@freeswitch.org
> http://www.freeswitchsolutions.com
>
> FreeSWITCH-powered IP PBX: The CudaTel Communication Server
> http://www.cudatel.com
>
> Official FreeSWITCH Sites
> http://www.freeswitch.org
> http://wiki.freeswitch.org
> http://www.cluecon.com
>
> FreeSWITCH-dev mailing list
> FreeSWITCH-dev@lists.freeswitch.org
> http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev
> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-dev
> http://www.freeswitch.org
>
>


-- 
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/
Twitter: http://twitter.com/FreeSWITCH_wire

AIM: anthm
MSN:anthony_minessale@hotmail.com
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org
googletalk:conf+888@conference.freeswitch.org
pstn:+19193869900

[Attachment #5 (text/html)]

I believe you can do a space sep list on LOCAL_LIBADD an LOCAL_LDFLAGS<br><br><div \
class="gmail_quote">On Sat, Sep 29, 2012 at 10:42 PM, Seven Du <span dir="ltr">&lt;<a \
href="mailto:dujinfang@gmail.com" target="_blank">dujinfang@gmail.com</a>&gt;</span> \
wrote:<br> <blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px \
#ccc solid;padding-left:1ex">  <div>
                    The following Makefile works for me when I&#39;m working on \
mod_mp4v2  </div><div><br></div><div><div>LOCAL_CFLAGS=-I./mp4v2-2.0.0/include/mp4v2</div><div>LOCAL_LDFLAGS=-static \
./mp4v2-2.0.0/.libs/libmp4v2.a</div><div><br></div><div>BASE=../../../..</div><div>include \
$(BASE)/build/modmake.rules</div> </div><span class="HOEnZb"><font color="#888888">
                <div><div><br></div><div>-- </div><div>Seven Du</div><div>Sent with \
<a href="http://www.sparrowmailapp.com/?sig" \
target="_blank">Sparrow</a></div><div><br></div></div></font></span><div \
class="HOEnZb"><div class="h5">

                 
                <p style="color:#a0a0a8">On Sunday, September 30, 2012 at 10:46 AM, \
                Jon Lederman wrote:</p>
                <blockquote type="cite" \
style="border-left-style:solid;border-width:1px;margin-left:0px;padding-left:10px">  \
<span><div><div>Hi Anthony,<div><br></div><div>I had a question about the \
LOCAL_LIBADD syntax.  I have several libraries I need to add.  </div><div>When I \
tried:</div><div><br></div><div>LOCAL_LIBADD=path_to_lib1/lib1.a</div> \
<div>LOCAL_LIBADD+=path_to_lib2/lib2.a</div><div>LOCAL_LIBADD+=path_to_lib3/lib3.a</div><div><br></div><div>However, \
this didn&#39;t seem to work.  Does the += syntax append libraries?  I was able to \
get around this problem by extracting the .a files and the combining them in a single \
.a file, which I was able to load into audio weaver.  What is the correct syntax to \
add multiple libraries in the makefile?</div> \
<div><br></div><div>Thanks.</div><div><br></div><div>-Jon</div><div><div><div>On Sep \
28, 2012, at 9:26 AM, Anthony Minessale &lt;<a \
href="mailto:anthony.minessale@gmail.com" \
target="_blank">anthony.minessale@gmail.com</a>&gt; wrote:</div> <br><blockquote \
type="cite"><div>if you want to do it that way then build a static version of your \
aw.so and use the .a in the LOCAL_LIBADD<div><br></div><div>if you want to do the .so \
it would have to be installed somewhere and in the LD_LIBRARY_PATH at runtime<br>

<br><div>On Fri, Sep 28, 2012 at 10:56 AM, Jon Lederman <span dir="ltr">&lt;<a \
href="mailto:jon2718@gmail.com" target="_blank">jon2718@gmail.com</a>&gt;</span> \
wrote:<br><blockquote type="cite"><div> <div dir="auto"><div><span \
style="background-color:rgba(255,255,255,0)">Hi,</span></div><div><span \
style="background-color:rgba(255,255,255,0)"><br></span></div><div><span \
style="background-color:rgba(255,255,255,0)">Thanks for your reply.  The problem is \
that I&#39;m not sure I&#39;m linking the external libs correctly.  My module \
makefile is:</span></div>

<div><span style="background-color:rgba(255,255,255,0)"><br></span></div><div><span \
style="background-color:rgba(255,255,255,0)">BASE=../../../..<br>LOCAL_LIBADD+=./lib/aw.so<br>include \
$(BASE)/build/modmake.rules</span><br>

<br>Shouldn&#39;t LOCAL_LIBADD be enough.  Or do I need additional statements in my \
makefile.  The aw.so defines the symbol in question yet I still receive the missing \
symbol message when I try to load the module.</div><div>

<br></div><div>Any help would be greatly appreciated.</div><div><br></div><div>Thanks \
in advance.</div><span><font \
color="#888888"><div><br></div><div>Jon<br><br></div></font></span><div><div><div> \
<br>On Sep 28, 2012, at 11:27 AM, Anthony Minessale &lt;<a \
href="mailto:anthony.minessale@gmail.com" \
target="_blank">anthony.minessale@gmail.com</a>&gt; wrote:<br><br></div><blockquote \
type="cite"><div>to auto-load you also need modules.conf.xml modules.conf is only for \
building.<div>

<br></div><div>The module can&#39;t load because it&#39;s missing the \
symbol:</div><div><span \
style="color:rgb(34,34,34);font-size:13px;font-family:arial,sans-serif"><br> \
</span></div><div><span \
style="color:rgb(34,34,34);font-size:13px;font-family:arial,sans-serif">ZN10CAWETalker9ConfigureEPKc</span></div><div><font \
color="#222222" face="arial, sans-serif"><br> </font></div><div><font color="#222222" \
face="arial, sans-serif">So you need to link in any external libs you might be using \
into your .so</font></div><div><font color="#222222" face="arial, \
sans-serif"><br></font><br><div>


On Fri, Sep 28, 2012 at 12:05 AM, Jon Lederman <span dir="ltr">&lt;<a \
href="mailto:jon2718@gmail.com" target="_blank">jon2718@gmail.com</a>&gt;</span> \
wrote:<br><blockquote type="cite"><div>

Hi,<br>
<br>
I am writing a custom module called mod_aw for freeswitch that uses a dynamic library \
called aw.so containing a c++ class.  I edited the makefile for my module to:<br> \
<br> BASE=../../../..<br>
LOCAL_LIBADD+=./lib/aw.so<br>
include $(BASE)/build/modmake.rules<br>
<br>
I am able to build the module and also modified modules.conf to include the new \
module.<br> <br>
When I start freeswitch, I don&#39;t see a message that the module was loaded.<br>
<br>
When I type: reload mod_aw I receive the following error:<br>
<br>
2012-09-28 04:49:52.738493 [CRIT] switch_loadable_module.c:1310 Error Loading module \
                /usr/local/freeswitch/mod/mod_aw.so<br>
**/usr/local/freeswitch/mod/mod_aw.so: undefined symbol: \
_ZN10CAWETalker9ConfigureEPKc**<br> <br>
-ERR unloading module [No such module!]<br>
+OK Reloading XML<br>
-ERR loading module [module load file routine returned an error]<br>
<br>
I know the library works as I have tried it in another program outside of freeswitch. \
I am not sure what I am doing wrong.  I am wondering whether I need to provide extern \
&quot;C&quot; linkage for the c++ library.  However, I only have the .h file and .so \
file for the library.  Or, do I need to add something to my Makefile.<br>



<br>
Any help on how to configure this would be greatly appreciated.<br>
<br>
Thank you in advance.<br>
<br>
-Jon<br>
_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
<a href="mailto:consulting@freeswitch.org" \
target="_blank">consulting@freeswitch.org</a><br> <a \
href="http://www.freeswitchsolutions.com/" \
target="_blank">http://www.freeswitchsolutions.com</a><br> <br>
FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
<a href="http://www.cudatel.com/" target="_blank">http://www.cudatel.com</a><br>
<br>
Official FreeSWITCH Sites<br>
<a href="http://www.freeswitch.org/" \
target="_blank">http://www.freeswitch.org</a><br> <a \
href="http://wiki.freeswitch.org/" target="_blank">http://wiki.freeswitch.org</a><br> \
<a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br> <br>
FreeSWITCH-dev mailing list<br>
<a href="mailto:FreeSWITCH-dev@lists.freeswitch.org" \
target="_blank">FreeSWITCH-dev@lists.freeswitch.org</a><br> <a \
href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev" \
target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev</a><br> \
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-dev" \
target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-dev</a><br> <a \
href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br> \
</div></blockquote></div><br><br clear="all"><div><br></div>-- <br>Anthony Minessale \
II<br><br>FreeSWITCH <a href="http://www.freeswitch.org/" \
target="_blank">http://www.freeswitch.org/</a><br>ClueCon <a \
href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com/</a><br>


Twitter: <a href="http://twitter.com/FreeSWITCH_wire" \
target="_blank">http://twitter.com/FreeSWITCH_wire</a><br><br>AIM: anthm<br><a \
href="mailto:MSN%3Aanthony_minessale@hotmail.com" \
target="_blank">MSN:anthony_minessale@hotmail.com</a><br>

GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com" \
                target="_blank">PAYPAL:anthony.minessale@gmail.com</a><br>
IRC: <a href="http://irc.freenode.net/" target="_blank">irc.freenode.net</a> \
#freeswitch<br><br>FreeSWITCH Developer Conference<br><a \
href="mailto:sip%3A888@conference.freeswitch.org" \
target="_blank">sip:888@conference.freeswitch.org</a><br>

<a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org" \
target="_blank">googletalk:conf+888@conference.freeswitch.org</a><br> pstn:<a \
href="tel:%2B19193869900" value="+19193869900" target="_blank">+19193869900</a><br> \
</div> </div><div><span>_________________________________________________________________________</span><br><span>Professional \
FreeSWITCH Consulting Services:</span><br><span><a \
href="mailto:consulting@freeswitch.org" \
target="_blank">consulting@freeswitch.org</a></span><br>

<span><a href="http://www.freeswitchsolutions.com/" \
target="_blank">http://www.freeswitchsolutions.com</a></span><br><span></span><br><span>FreeSWITCH-powered \
IP PBX: The CudaTel Communication Server</span><br><span><a \
href="http://www.cudatel.com/" target="_blank">http://www.cudatel.com</a></span><br>

<span></span><br><span>Official FreeSWITCH Sites</span><br><span><a \
href="http://www.freeswitch.org/" \
target="_blank">http://www.freeswitch.org</a></span><br><span><a \
href="http://wiki.freeswitch.org/" \
target="_blank">http://wiki.freeswitch.org</a></span><br>

<span><a href="http://www.cluecon.com/" \
target="_blank">http://www.cluecon.com</a></span><br><span></span><br><span>FreeSWITCH-dev \
mailing list</span><br><span><a href="mailto:FreeSWITCH-dev@lists.freeswitch.org" \
target="_blank">FreeSWITCH-dev@lists.freeswitch.org</a></span><br>

<span><a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev" \
target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev</a></span><br><span>UNSUBSCRIBE:http://<a \
href="http://lists.freeswitch.org/mailman/options/freeswitch-dev" \
target="_blank">lists.freeswitch.org/mailman/options/freeswitch-dev</a></span><br>

<span><a href="http://www.freeswitch.org/" \
target="_blank">http://www.freeswitch.org</a></span><br></div></blockquote></div></div \
></div><br>_________________________________________________________________________<br>
> 
Professional FreeSWITCH Consulting Services:<br>
<a href="mailto:consulting@freeswitch.org" \
target="_blank">consulting@freeswitch.org</a><br> <a \
href="http://www.freeswitchsolutions.com/" \
target="_blank">http://www.freeswitchsolutions.com</a><br> <br>
FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
<a href="http://www.cudatel.com/" target="_blank">http://www.cudatel.com</a><br>
<br>
Official FreeSWITCH Sites<br>
<a href="http://www.freeswitch.org/" \
target="_blank">http://www.freeswitch.org</a><br> <a \
href="http://wiki.freeswitch.org/" target="_blank">http://wiki.freeswitch.org</a><br> \
<a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br> <br>
FreeSWITCH-dev mailing list<br>
<a href="mailto:FreeSWITCH-dev@lists.freeswitch.org" \
target="_blank">FreeSWITCH-dev@lists.freeswitch.org</a><br> <a \
href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev" \
target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev</a><br> \
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-dev" \
target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-dev</a><br> <a \
href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br> \
<br></div></blockquote></div><br><br clear="all"><div><br></div>-- <br>Anthony \
Minessale II<br><br>FreeSWITCH <a href="http://www.freeswitch.org/" \
target="_blank">http://www.freeswitch.org/</a><br>ClueCon <a \
href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com/</a><br>

Twitter: <a href="http://twitter.com/FreeSWITCH_wire" \
target="_blank">http://twitter.com/FreeSWITCH_wire</a><br><br>AIM: anthm<br><a \
href="mailto:MSN%3Aanthony_minessale@hotmail.com" \
target="_blank">MSN:anthony_minessale@hotmail.com</a><br> GTALK/JABBER/<a \
href="mailto:PAYPAL%3Aanthony.minessale@gmail.com" \
                target="_blank">PAYPAL:anthony.minessale@gmail.com</a><br>
IRC: <a href="http://irc.freenode.net/" target="_blank">irc.freenode.net</a> \
#freeswitch<br><br>FreeSWITCH Developer Conference<br><a \
href="mailto:sip%3A888@conference.freeswitch.org" \
target="_blank">sip:888@conference.freeswitch.org</a><br> <a \
href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org" \
target="_blank">googletalk:conf+888@conference.freeswitch.org</a><br> pstn:<a \
href="tel:%2B19193869900" value="+19193869900" target="_blank">+19193869900</a><br> \
</div> _________________________________________________________________________<br>Professional \
FreeSWITCH Consulting Services:<br><a href="mailto:consulting@freeswitch.org" \
target="_blank">consulting@freeswitch.org</a><br><a \
href="http://www.freeswitchsolutions.com" \
target="_blank">http://www.freeswitchsolutions.com</a><br> <br>FreeSWITCH-powered IP \
PBX: The CudaTel Communication Server<br><a href="http://www.cudatel.com" \
target="_blank">http://www.cudatel.com</a><br><br>Official FreeSWITCH Sites<br><a \
href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br> <a \
href="http://wiki.freeswitch.org" \
target="_blank">http://wiki.freeswitch.org</a><br><a href="http://www.cluecon.com" \
target="_blank">http://www.cluecon.com</a><br><br>FreeSWITCH-dev mailing list<br><a \
href="mailto:FreeSWITCH-dev@lists.freeswitch.org" \
target="_blank">FreeSWITCH-dev@lists.freeswitch.org</a><br> <a \
href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev" \
target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev</a><br>UNSUBSCRIBE:<a \
href="http://lists.freeswitch.org/mailman/options/freeswitch-dev" \
target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-dev</a><br> <a \
href="http://www.freeswitch.org" \
target="_blank">http://www.freeswitch.org</a><br></div></blockquote></div><br></div></ \
div><div><div>_________________________________________________________________________</div><div>Professional \
FreeSWITCH Consulting Services:</div> <div><a href="mailto:consulting@freeswitch.org" \
target="_blank">consulting@freeswitch.org</a></div><div><a \
href="http://www.freeswitchsolutions.com" \
target="_blank">http://www.freeswitchsolutions.com</a></div><div><br></div> \
<div>FreeSWITCH-powered IP PBX: The CudaTel Communication Server</div><div><a \
href="http://www.cudatel.com" \
target="_blank">http://www.cudatel.com</a></div><div><br></div><div>Official \
FreeSWITCH Sites</div><div><a href="http://www.freeswitch.org" \
target="_blank">http://www.freeswitch.org</a></div> <div><a \
href="http://wiki.freeswitch.org" \
target="_blank">http://wiki.freeswitch.org</a></div><div><a \
href="http://www.cluecon.com" \
target="_blank">http://www.cluecon.com</a></div><div><br></div><div>FreeSWITCH-dev \
mailing list</div> <div><a href="mailto:FreeSWITCH-dev@lists.freeswitch.org" \
target="_blank">FreeSWITCH-dev@lists.freeswitch.org</a></div><div><a \
href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev" \
target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev</a></div> \
<div>UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-dev" \
target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-dev</a></div><div><a \
href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a></div> \
</div></div></span>  
                 
                 
                 
                </blockquote>
                 
                <div>
                    <br>
                </div>
            </div></div><br>_________________________________________________________________________<br>
 Professional FreeSWITCH Consulting Services:<br>
<a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
<a href="http://www.freeswitchsolutions.com" \
target="_blank">http://www.freeswitchsolutions.com</a><br> <br>
FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
<a href="http://www.cudatel.com" target="_blank">http://www.cudatel.com</a><br>
<br>
Official FreeSWITCH Sites<br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<a href="http://wiki.freeswitch.org" \
target="_blank">http://wiki.freeswitch.org</a><br> <a href="http://www.cluecon.com" \
target="_blank">http://www.cluecon.com</a><br> <br>
FreeSWITCH-dev mailing list<br>
<a href="mailto:FreeSWITCH-dev@lists.freeswitch.org">FreeSWITCH-dev@lists.freeswitch.org</a><br>
 <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev" \
target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev</a><br> \
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-dev" \
target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-dev</a><br> <a \
href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br> \
<br></blockquote></div><br><br clear="all"><div><br></div>-- <br>Anthony Minessale \
II<br><br>FreeSWITCH <a \
href="http://www.freeswitch.org/">http://www.freeswitch.org/</a><br>ClueCon <a \
                href="http://www.cluecon.com/">http://www.cluecon.com/</a><br>
Twitter: <a href="http://twitter.com/FreeSWITCH_wire">http://twitter.com/FreeSWITCH_wire</a><br><br>AIM: \
anthm<br><a href="mailto:MSN%3Aanthony_minessale@hotmail.com">MSN:anthony_minessale@hotmail.com</a><br>GTALK/JABBER/<a \
href="mailto:PAYPAL%3Aanthony.minessale@gmail.com">PAYPAL:anthony.minessale@gmail.com</a><br>
                
IRC: <a href="http://irc.freenode.net">irc.freenode.net</a> \
#freeswitch<br><br>FreeSWITCH Developer Conference<br><a \
href="mailto:sip%3A888@conference.freeswitch.org">sip:888@conference.freeswitch.org</a><br><a \
href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org">googletalk:conf+888@conference.freeswitch.org</a><br>
 pstn:+19193869900<br>



_________________________________________________________________________
Professional FreeSWITCH Consulting Services:
consulting@freeswitch.org
http://www.freeswitchsolutions.com

FreeSWITCH-powered IP PBX: The CudaTel Communication Server
http://www.cudatel.com

Official FreeSWITCH Sites
http://www.freeswitch.org
http://wiki.freeswitch.org
http://www.cluecon.com

FreeSWITCH-dev mailing list
FreeSWITCH-dev@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-dev
http://www.freeswitch.org


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic