<div dir="ltr">Hi Michael,<br>it happens with other things too not just boost. things that aren&#39;t shared libraries. I&#39;m wondering if this is bc of C++ or my makefile. Am I doing something obviously wrong here as far as freeswitch and my makefile is concerned? Is writing the module in advanced C++ an issue?:<div><br></div><div>







<p class=""><span class="">****************</span></p><p class=""><span class="">include $(BASE)/build/modmake.rules</span></p>
<p class=""><span class="">LOCAL_CFLAGS=-I./include -std=c++0x -DBUILD_VERSION=\&quot;$(BUILD_VERSION)\&quot; -Iinclude$(LOCAL_CFLAGS_$(ARCH)) -fpermissive</span></p>
<p class=""><span class="">LOCAL_LDFLAGS+=</span></p>
<p class="">strategy.o: strategy.cpp<br></p>
<p class=""><span class="">ladspa_strategy.o: ladspa_strategy.cpp</span></p>
<p class=""><span class="">dsp_strategy.o: dsp_strategy.cpp </span></p>
<p class=""><span class="">param_strategy.o: param_strategy.cpp</span></p>
<p class=""><span class="">load.o: load.cpp</span></p>
<p class=""><span class="">docopt.o: docopt.cpp</span></p>
<p class=""><span class="">LOCAL_OBJS+= ladspa_strategy.o strategy.o dsp_strategy.o load.o param_strategy.o docopt.o</span></p>
<p class=""><span class="">local_depend: $(LOCAL_OBJS)</span></p>
<p class=""><span class="">ARCH := $(shell getconf LONG_BIT)</span></p>
<p class="">***************</p><div>If I load the module - even if I don&#39;t invoke the code - it doesn&#39;t unload. Having to restart FS each time I&#39;m trying something is taking a lot of time. </div><div><br></div><div>thanks,</div><div>chris</div><div><br></div><div><br>On Wednesday, March 9, 2016, Michael Jerris &lt;<a href="mailto:mike@jerris.com" target="_blank">mike@jerris.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div style="word-wrap:break-word">sounds like a bug in boost or some sort of misuse.. <div><br><div><blockquote type="cite"><div>On Mar 5, 2016, at 8:46 AM, Chris Mandra &lt;<a>mandra@gmail.com</a>&gt; wrote:</div><br><div><span style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;float:none;display:inline!important">Hi guys. After much slething I figured it out: this line:</span><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><br>std::string const&amp; s = po::validators::get_single_string(values);<div><br></div><div>this is something from boost::program_options<br></div><div><br></div><div>it throws an exception if it is false</div><div><br></div><div>and for some reason if that line is in my code, even if it&#39;s not invoked, causes the library to not <span></span>unload. Do you know why this might be? Is there some flag I should throw in my makefile to allow the boost library to be used in a way that&#39;s more compatible with free switch?<br></div><div>Thanks, <br></div><div>Chris</div><div><br>On Friday, March 4, 2016, Nathan Neulinger &lt;<a>nneul@mst.edu</a>&gt; wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">No, what I mean was I don&#39;t see the symptom unloading various modules on my system. You should try the same (modules<br>OTHER than yours) to see if the symtom is general or specific to your code.<br><br>-- Nathan<br><br>On 03/04/2016 01:01 PM, Chris Mandra wrote:<br>&gt; Hi Nathan -<br>&gt; this is a module I&#39;m working on, that&#39;s why it&#39;s not on your system. I know the problem is specific to my module, I&#39;m<br>&gt; trying to figure out why.<br>&gt; freeswitch reports module unloaded, but lsof reports that fs is still talking to it, meaning freeswitch still reports it<br>&gt; as open file.<br>&gt;<br>&gt; chris<br>&gt;<br>&gt;<br>&gt; On Fri, Mar 4, 2016 at 1:15 PM, Nathan Neulinger &lt;<a>nneul@mst.edu</a><span> </span>&lt;mailto:<a>nneul@mst.edu</a>&gt;&gt; wrote:<br>&gt;<br>&gt;     I certainly don&#39;t see it with other modules on my system.<br>&gt;<br>&gt;     Are you able to test it with other modules on yours? i.e. try unloading something like mod_opus (unless you are using<br>&gt;     it). And see if the same behavior exists. If it doesn&#39;t, problem is specific to the module being unloaded.<br>&gt;<br>&gt;     -- Nathan<br>&gt;<br>&gt;     On 03/04/2016 12:10 PM, Chris Mandra wrote:<br>&gt;     &gt; It seems to me that the problem is that the library is not being unloaded, or it&#39;s not properly loaded or both?<br>&gt;     &gt;<br>&gt;     &gt; Am I the only one running into this sort of thing?<br>&gt;     &gt;<br>&gt;     &gt; thanks for all your help,<br>&gt;     &gt; chris<br>&gt;     &gt;<br>&gt;     &gt; On Fri, Mar 4, 2016 at 10:49 AM, Chris Mandra &lt;<a>mandra@gmail.com</a><span> </span>&lt;mailto:<a>mandra@gmail.com</a>&gt; &lt;mailto:<a>mandra@gmail.com</a>&lt;mailto:<a>mandra@gmail.com</a>&gt;&gt;&gt; wrote:<br>&gt;     &gt;<br>&gt;     &gt;     freeswitc 10760 freeswitch  DEL    REG                8,1              157457 /usr/local/freeswitch/mod/mod_skeleton.so<br>&gt;     &gt;<br>&gt;     &gt;     after<br>&gt;     &gt;<br>&gt;     &gt;     freeswitc 10760 freeswitch  DEL    REG                8,1              157457 /usr/local/freeswitch/mod/mod_skeleton.so<br>&gt;     &gt;<br>&gt;     &gt;     both the same after loading and unloading<br>&gt;     &gt;<br>&gt;     &gt;<br>&gt;     &gt;     On Fri, Mar 4, 2016 at 9:16 AM, Nathan Neulinger &lt;<a>nneul@mst.edu</a><span> </span>&lt;mailto:<a>nneul@mst.edu</a>&gt; &lt;mailto:<a>nneul@mst.edu</a><span> </span>&lt;mailto:<a>nneul@mst.edu</a>&gt;&gt;&gt; wrote:<br>&gt;     &gt;<br>&gt;     &gt;         If you do the lsof before and then after the unload, does the lsof still show the same filename as opened?<br>&gt;     &gt;<br>&gt;     &gt;         -- Nathan<br>&gt;     &gt;<br>&gt;     &gt;         On 03/04/2016 07:53 AM, Chris Mandra wrote:<br>&gt;     &gt;         &gt; And I want to stress, that I delete the file from disc unload the module, reload the module and it says it loads, so<br>&gt;     &gt;         &gt; this doesn&#39;t make sense to me…<br>&gt;     &gt;         &gt;<br>&gt;     &gt;         &gt; On Friday, March 4, 2016, Chris Mandra &lt;<a>mandra@gmail.com</a><span> </span>&lt;mailto:<a>mandra@gmail.com</a>&gt; &lt;mailto:<a>mandra@gmail.com</a><span> </span>&lt;mailto:<a>mandra@gmail.com</a>&gt;&gt;<br>&gt;     &lt;mailto:<a>mandra@gmail.com</a><span> </span>&lt;mailto:<a>mandra@gmail.com</a>&gt; &lt;mailto:<a>mandra@gmail.com</a><span> </span>&lt;mailto:<a>mandra@gmail.com</a>&gt;&gt;&gt;&gt; wrote:<br>&gt;     &gt;         &gt;<br>&gt;     &gt;         &gt;     Nevermind.<br>&gt;     &gt;         &gt;     It&#39;s still not working.<br>&gt;     &gt;         &gt;<br>&gt;     &gt;         &gt;     Couple of questions:<br>&gt;     &gt;         &gt;     I&#39;m writing this I&#39;m c++. Could that be causing problems?<br>&gt;     &gt;         &gt;     Here&#39;s my makefile. Is anything obvs causing trouble here:<br>&gt;     &gt;         &gt;<br>&gt;     &gt;         &gt;     BASE=../../../..<br>&gt;     &gt;         &gt;     include $(BASE)/build/modmake.rules<br>&gt;     &gt;         &gt;     LOCAL_CFLAGS=-I./include -std=c++0x -DBUILD_VERSION=\&quot;$(BUILD_VERSION)\&quot; -Iinclude$(LOCAL_CFLAGS_$(ARCH)) -fpermissive<br>&gt;     &gt;         &gt;     LOCAL_LDFLAGS+=-lboost_program_options<br>&gt;     &gt;         &gt;     strategy.o: strategy.cpp<br>&gt;     &gt;         &gt;     ladspa_strategy.o: ladspa_strategy.cpp<br>&gt;     &gt;         &gt;     dsp_strategy.o: dsp_strategy.cpp<br>&gt;     &gt;         &gt;     param_strategy.o: param_strategy.cpp<br>&gt;     &gt;         &gt;     load.o: load.cpp<br>&gt;     &gt;         &gt;     tokenizer.o: tokenizer.cpp<br>&gt;     &gt;         &gt;     validators.o: validators.cpp<br>&gt;     &gt;         &gt;     LOCAL_OBJS+=ladspa_strategy.o strategy.o dsp_strategy.o load.o tokenizer.o param_strategy.o<br>&gt;     &gt;         &gt;     local_depend: $(LOCAL_OBJS)<br>&gt;     &gt;         &gt;<br>&gt;     &gt;         &gt;     Thanks, Chris<br>&gt;     &gt;         &gt;<br>&gt;     &gt;         &gt;<br>&gt;     &gt;         &gt;<br>&gt;      &gt;         &gt;     On Friday, March 4, 2016, Chris Mandra &lt;<a>mandra@gmail.com</a><span> </span>&lt;mailto:<a>mandra@gmail.com</a>&gt;<br>&gt;     &lt;mailto:<a>mandra@gmail.com</a><span> </span>&lt;mailto:<a>mandra@gmail.com</a>&gt;&gt; &lt;javascript:_e(%7B%7D,&#39;cvml&#39;,&#39;<a>mandra@gmail.com</a><br>&gt;     &lt;mailto:<a>mandra@gmail.com</a>&gt;<br>&gt;     &gt;         &lt;mailto:<a>mandra@gmail.com</a><span> </span>&lt;mailto:<a>mandra@gmail.com</a>&gt;&gt;&#39;);&gt;&gt; wrote:<br>&gt;     &gt;         &gt;<br>&gt;     &gt;         &gt;         So here&#39;s another wrinkle. I&#39;ve removed my module from the system, recreated it fresh with a new filename (and<br>&gt;     &gt;         &gt;         internal names where apropos) and it&#39;s reloading is working properly now. Same code. How is this possible?<br>&gt;     &gt;         &gt;         Thanks,<br>&gt;     &gt;         &gt;         Chris<br>&gt;     &gt;         &gt;<br>&gt;     &gt;         &gt;         On Thursday, March 3, 2016, Chris Mandra &lt;<a>mandra@gmail.com</a><span> </span>&lt;mailto:<a>mandra@gmail.com</a>&gt; &lt;mailto:<a>mandra@gmail.com</a>&lt;mailto:<a>mandra@gmail.com</a>&gt;&gt;&gt; wrote:<br>&gt;     &gt;         &gt;<br>&gt;     &gt;         &gt;             Does that make anything come to mind?<br>&gt;     &gt;         &gt;<br>&gt;     &gt;         &gt;             On Wednesday, March 2, 2016, Chris Mandra &lt;<a>mandra@gmail.com</a><span> </span>&lt;mailto:<a>mandra@gmail.com</a>&gt; &lt;mailto:<a>mandra@gmail.com</a>&lt;mailto:<a>mandra@gmail.com</a>&gt;&gt;&gt; wrote:<br>&gt;     &gt;         &gt;<br>&gt;     &gt;         &gt;                 1.6<br>&gt;     &gt;         &gt;<br>&gt;     &gt;         &gt;                 On Wed, Mar 2, 2016 at 11:57 AM, Ken Rice &lt;<a>krice@freeswitch.org</a><span> </span>&lt;mailto:<a>krice@freeswitch.org</a>&gt; &lt;mailto:<a>krice@freeswitch.org</a>&lt;mailto:<a>krice@freeswitch.org</a>&gt;&gt;&gt; wrote:<br>&gt;     &gt;         &gt;<br>&gt;     &gt;          &gt;                     What version of FreeSWITCH are you building this against? ____<br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;                     __ __<br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;                     __ __<br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;                     __ __<br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;                     __ __<br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;                     __ __<br>&gt;     &gt;         &gt;<br>&gt;     &gt;         &gt;                     *From:*<a>freeswitch-users-bounces@lists.freeswitch.org</a><span> </span>&lt;mailto:<a>freeswitch-users-bounces@lists.freeswitch.org</a>&gt;<br>&gt;     &lt;mailto:<a>freeswitch-users-bounces@lists.freeswitch.org</a><span> </span>&lt;mailto:<a>freeswitch-users-bounces@lists.freeswitch.org</a>&gt;&gt;<br>&gt;      &gt;         &gt;                     [mailto:<a>freeswitch-users-bounces@lists.freeswitch.org</a><br>&gt;     &lt;mailto:<a>freeswitch-users-bounces@lists.freeswitch.org</a>&gt; &lt;mailto:<a>freeswitch-users-bounces@lists.freeswitch.org</a><br>&gt;     &lt;mailto:<a>freeswitch-users-bounces@lists.freeswitch.org</a>&gt;&gt;] *On Behalf<br>&gt;     &gt;         Of *Chris Mandra<br>&gt;     &gt;          &gt;                     *Sent:* Wednesday, March 2, 2016 10:37 AM<br>&gt;      &gt;         &gt;                     *To:* FreeSWITCH Users Help &lt;<a>freeswitch-users@lists.freeswitch.org</a><br>&gt;     &lt;mailto:<a>freeswitch-users@lists.freeswitch.org</a>&gt; &lt;mailto:<a>freeswitch-users@lists.freeswitch.org</a><br>&gt;     &lt;mailto:<a>freeswitch-users@lists.freeswitch.org</a>&gt;&gt;&gt;<br>&gt;     &gt;          &gt;                     *Subject:* [Freeswitch-users] module question____<br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;                     __ __<br>&gt;     &gt;         &gt;<br>&gt;     &gt;         &gt;                     I unload, wipe the file reload and it says it&#39;s reloaded<br>&gt;     &gt;         &gt;                     This makes no sense<br>&gt;      &gt;          &gt;                     On Wednesday, March 2, 2016, Nathan Neulinger &lt;<a>nneul@mst.edu</a><br>&gt;     &lt;mailto:<a>nneul@mst.edu</a>&gt; &lt;mailto:<a>nneul@mst.edu</a><span> </span>&lt;mailto:<a>nneul@mst.edu</a>&gt;&gt;&gt;<br>&gt;     &gt;         wrote:____<br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;                         I think he said earlier that if he shuts down completely, it works fine, but he&#39;s<br>&gt;     &gt;         wanting to be<br>&gt;     &gt;          &gt;                         able to reload on the<br>&gt;     &gt;          &gt;                         fly to test new changes.<br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;                         -- Nathan<br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;                         On 03/02/2016 08:59 AM, Ken Rice wrote:<br>&gt;     &gt;          &gt;                          &gt; Have you completely shut FreeSwitch down?  There is a chance when you unload a<br>&gt;     &gt;         module, that<br>&gt;     &gt;          &gt;                         module doesn’t actually<br>&gt;     &gt;          &gt;                          &gt; unload, its still loaded, just deactivated. You can easily verify this by making<br>&gt;     &gt;         sure the .so<br>&gt;     &gt;          &gt;                         for the module is gone,<br>&gt;     &gt;          &gt;                          &gt; and restarting FreeSWITCH completely.<br>&gt;     &gt;          &gt;                          &gt;<br>&gt;     &gt;          &gt;                          &gt; *From:*<a>freeswitch-users-bounces@lists.freeswitch.org</a><span> </span>&lt;mailto:<a>freeswitch-users-bounces@lists.freeswitch.org</a>&gt;<br>&gt;     &gt;         &lt;mailto:<a>freeswitch-users-bounces@lists.freeswitch.org</a><span> </span>&lt;mailto:<a>freeswitch-users-bounces@lists.freeswitch.org</a>&gt;&gt;<br>&gt;      &gt;          &gt;                         [mailto:<a>freeswitch-users-bounces@lists.freeswitch.org</a><br>&gt;     &lt;mailto:<a>freeswitch-users-bounces@lists.freeswitch.org</a>&gt;<br>&gt;     &gt;         &lt;mailto:<a>freeswitch-users-bounces@lists.freeswitch.org</a><span> </span>&lt;mailto:<a>freeswitch-users-bounces@lists.freeswitch.org</a>&gt;&gt;] *On Behalf<br>&gt;     &gt;          &gt;                          &gt; Of *Chris Mandra<br>&gt;     &gt;          &gt;                          &gt; *Sent:* Wednesday, March 2, 2016 8:30 AM<br>&gt;     &gt;          &gt;                          &gt; *To:* FreeSWITCH Users Help &lt;<a>freeswitch-users@lists.freeswitch.org</a><span> </span>&lt;mailto:<a>freeswitch-users@lists.freeswitch.org</a>&gt;<br>&gt;      &gt;         &lt;mailto:<a>freeswitch-users@lists.freeswitch.org</a><span> </span>&lt;mailto:<a>freeswitch-users@lists.freeswitch.org</a>&gt;&gt;&gt;<br>&gt;     &gt;          &gt;                          &gt; *Subject:* Re: [Freeswitch-users] module question<br>&gt;     &gt;          &gt;                          &gt;<br>&gt;     &gt;          &gt;                          &gt; No, not chroot&#39;d. I&#39;m compiling a bunch of my own classes, could be my makefile?<br>&gt;     &gt;          &gt;                          &gt;<br>&gt;     &gt;          &gt;                          &gt; On Wednesday, March 2, 2016, Nathan Neulinger &lt;<a>nneul@mst.edu</a><span> </span>&lt;mailto:<a>nneul@mst.edu</a>&gt;<br>&gt;     &gt;         &lt;mailto:<a>nneul@mst.edu</a><span> </span>&lt;mailto:<a>nneul@mst.edu</a>&gt;&gt; &lt;mailto:<a>nneul@mst.edu</a><span> </span>&lt;mailto:<a>nneul@mst.edu</a>&gt; &lt;mailto:<a>nneul@mst.edu</a><br>&gt;     &lt;mailto:<a>nneul@mst.edu</a>&gt;&gt;&gt;&gt; wrote:<br>&gt;     &gt;          &gt;                          &gt;<br>&gt;     &gt;          &gt;                          &gt;     Is there any chance you are running freeswitch chroot&#39;d?<br>&gt;     &gt;          &gt;                          &gt;<br>&gt;     &gt;          &gt;                          &gt;     On 03/02/2016 06:14 AM, Chris Mandra wrote:<br>&gt;     &gt;          &gt;                          &gt;      &gt; Thank you for writing Stephen, I&#39;ve already tried that, and that&#39;s how I<br>&gt;     &gt;         know it&#39;s<br>&gt;     &gt;          &gt;                         reporting what it&#39;s reporting<br>&gt;     &gt;          &gt;                          &gt;     and how<br>&gt;     &gt;          &gt;                          &gt;      &gt; it doesn&#39;t make any sense.<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt; Fs is reporting this: /usr/local/freeswitch/mod/mod_test_dsp.so<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt; however that file doesn’t even exist<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt; and yet it still says it’s loading it<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt; how is that possible?<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt; On Wednesday, March 2, 2016, Steven Ayre &lt;<a>steveayre@gmail.com</a><span> </span>&lt;mailto:<a>steveayre@gmail.com</a>&gt;<br>&gt;      &gt;         &lt;mailto:<a>steveayre@gmail.com</a><span> </span>&lt;mailto:<a>steveayre@gmail.com</a>&gt;&gt; &lt;javascript:;&gt;<br>&gt;      &gt;          &gt;                         &lt;mailto:<a>steveayre@gmail.com</a><span> </span>&lt;mailto:<a>steveayre@gmail.com</a>&gt;<br>&gt;     &lt;mailto:<a>steveayre@gmail.com</a><span> </span>&lt;mailto:<a>steveayre@gmail.com</a>&gt;&gt;<br>&gt;     &gt;          &gt;                          &gt;     &lt;javascript:;&gt;&gt;&gt; wrote:<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;     When the file is loaded use find FreeSWITCH&#39;s PID and then use the<br>&gt;     &gt;         &#39;lsof -p $PID |<br>&gt;     &gt;          &gt;                         grep mod_&#39; command...<br>&gt;     &gt;          &gt;                          &gt;     it&#39;ll show<br>&gt;     &gt;          &gt;                          &gt;      &gt;     you a list of the modules FreeSWITCH currently has loaded. See if it&#39;s<br>&gt;     &gt;         loading<br>&gt;     &gt;          &gt;                         from a different path that way.<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;     On 2 March 2016 at 02:52, Chris Mandra &lt;<a>mandra@gmail.com</a><span> </span>&lt;mailto:<a>mandra@gmail.com</a>&gt;<br>&gt;      &gt;         &lt;mailto:<a>mandra@gmail.com</a><span> </span>&lt;mailto:<a>mandra@gmail.com</a>&gt;&gt; &lt;javascript:;&gt;<br>&gt;      &gt;          &gt;                          &gt;     &lt;javascript:_e(%7B%7D,&#39;cvml&#39;,&#39;<a>mandra@gmail.com</a><br>&gt;     &lt;mailto:<a>mandra@gmail.com</a>&gt; &lt;mailto:<a>mandra@gmail.com</a><span> </span>&lt;mailto:<a>mandra@gmail.com</a>&gt;&gt;<br>&gt;     &gt;         &lt;javascript:;&gt;&#39;);&gt;&gt; wrote:<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;         Any other ideas?<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;         On Tuesday, March 1, 2016, Chris Mandra &lt;<a>mandra@gmail.com</a><span> </span>&lt;mailto:<a>mandra@gmail.com</a>&gt;<br>&gt;      &gt;         &lt;mailto:<a>mandra@gmail.com</a><span> </span>&lt;mailto:<a>mandra@gmail.com</a>&gt;&gt; &lt;javascript:;&gt;<br>&gt;      &gt;          &gt;                          &gt;     &lt;javascript:_e(%7B%7D,&#39;cvml&#39;,&#39;<a>mandra@gmail.com</a><br>&gt;     &lt;mailto:<a>mandra@gmail.com</a>&gt; &lt;mailto:<a>mandra@gmail.com</a><span> </span>&lt;mailto:<a>mandra@gmail.com</a>&gt;&gt;<br>&gt;     &gt;         &lt;javascript:;&gt;&#39;);&gt;&gt; wrote:<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;             Thanks for your responses so far guys. Italo, its only built<br>&gt;     &gt;         from source<br>&gt;     &gt;          &gt;                         so I don&#39;t think that&#39;s the<br>&gt;     &gt;          &gt;                          &gt;     issue.<br>&gt;     &gt;          &gt;                          &gt;      &gt;             This is baffling. I&#39;ve tried it in more one machine, same result.<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;             On Tuesday, March 1, 2016, Chris Mandra &lt;<a>mandra@gmail.com</a><span> </span>&lt;mailto:<a>mandra@gmail.com</a>&gt;<br>&gt;      &gt;         &lt;mailto:<a>mandra@gmail.com</a><span> </span>&lt;mailto:<a>mandra@gmail.com</a>&gt;&gt; &lt;javascript:;&gt;&gt;<br>&gt;     &gt;          &gt;                         wrote:<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;                 So, FS is reporting<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;                 reporting this: /usr/local/freeswitch/mod/mod_test_dsp.so<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;                 however that file doesn’t even exist<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;                 and yet it still says it’s loading it<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;                 how is that possible?<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;                 On Tue, Mar 1, 2016 at 12:34 PM, Nathan Neulinger<br>&gt;      &gt;         &lt;<a>nneul@mst.edu</a><span> </span>&lt;mailto:<a>nneul@mst.edu</a>&gt; &lt;mailto:<a>nneul@mst.edu</a><span> </span>&lt;mailto:<a>nneul@mst.edu</a>&gt;&gt;<br>&gt;     &gt;          &gt;                         &lt;javascript:;&gt;&gt; wrote:<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;                     On 03/01/2016 09:41 AM, Chris Mandra wrote:<br>&gt;     &gt;          &gt;                          &gt;      &gt;                     &gt; thanks for the reply Nathan - this is really weird:<br>&gt;     &gt;          &gt;                          &gt;      &gt;                     &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;                     &gt; after i remove the .so files (and make sure they&#39;re<br>&gt;     &gt;         gone from my<br>&gt;     &gt;          &gt;                         disk)  it still reports it<br>&gt;     &gt;          &gt;                          &gt;     successfully reloads<br>&gt;     &gt;          &gt;                          &gt;      &gt;                     &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;                     Ok, so issue &#39;lsof -p PID_OF_FREESWITCH&#39; and look for<br>&gt;     &gt;         the path to<br>&gt;     &gt;          &gt;                         the .so file that it<br>&gt;     &gt;          &gt;                          &gt;     loaded. It&#39;s<br>&gt;     &gt;          &gt;                          &gt;      &gt;                     likely pulling it in<br>&gt;     &gt;          &gt;                          &gt;      &gt;                     from a different location.<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;                     Or &#39;strace -v -f -s 500 -o /tmp/trc -p<br>&gt;     &gt;         PID_OF_FREESWITCH&#39;, then<br>&gt;     &gt;          &gt;                         issue the reload, then kill the<br>&gt;     &gt;          &gt;                          &gt;      &gt;                     strace and look for what<br>&gt;     &gt;          &gt;                          &gt;      &gt;                     file/path it searched/etc.<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;                     -- Nathan<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;           ------------------------------------------------------------<br>&gt;      &gt;          &gt;                          &gt;      &gt;                     Nathan Neulinger<span> </span><a>nneul@mst.edu</a><br>&gt;     &lt;mailto:<a>nneul@mst.edu</a>&gt; &lt;mailto:<a>nneul@mst.edu</a><span> </span>&lt;mailto:<a>nneul@mst.edu</a>&gt;&gt;<br>&gt;     &gt;         &lt;javascript:;&gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;                     Missouri S&amp;T Information Technology<a href="tel:%28573%29%20612-1412" value="+15736121412" target="_blank">(573) 612-1412</a> &lt;<a href="tel:%28573%29%20612-1412" target="_blank">tel:%28573%29%20612-1412</a>&gt;<br>&gt;     &gt;         &lt;<a href="tel:%28573%29%20612-1412" target="_blank">tel:%28573%29%20612-1412</a>&gt;<br>&gt;     &gt;          &gt;                         &lt;<a href="tel:%28573%29%20612-1412" target="_blank">tel:%28573%29%20612-1412</a>&gt; &lt;<a href="tel:%28573%29%20612-1412" target="_blank">tel:%28573%29%20612-1412</a>&gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;                     System Administrator - Architect<br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                           _________________________________________________________________________<br>&gt;     &gt;         &gt;                          &gt;      &gt;                     Professional FreeSWITCH Consulting Services:<br>&gt;      &gt;         &gt;                          &gt;      &gt;<a>consulting@freeswitch.org</a><span> </span>&lt;mailto:<a>consulting@freeswitch.org</a>&gt;<br>&gt;     &lt;mailto:<a>consulting@freeswitch.org</a><span> </span>&lt;mailto:<a>consulting@freeswitch.org</a>&gt;&gt; &lt;javascript:;&gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;<a href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;                     Official FreeSWITCH Sites<br>&gt;     &gt;         &gt;                          &gt;      &gt;<a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt;     &gt;         &gt;                          &gt;      &gt;<a href="http://confluence.freeswitch.org/" target="_blank">http://confluence.freeswitch.org</a><br>&gt;     &gt;         &gt;                          &gt;      &gt;<a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;                     FreeSWITCH-users mailing list<br>&gt;      &gt;         &gt;                          &gt;      &gt;<a>FreeSWITCH-users@lists.freeswitch.org</a><br>&gt;     &lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a>&gt; &lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a><br>&gt;     &lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a>&gt;&gt; &lt;javascript:;&gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                           UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>&gt;     &gt;         &gt;                          &gt;      &gt;<a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;                 --<br>&gt;     &gt;         &gt;                          &gt;      &gt;                 mandra<br>&gt;     &gt;          &gt;                          &gt;      &gt;                 c:<a href="tel:410.258.5281" value="+14102585281" target="_blank">410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt;&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt;<br>&gt;      &gt;         &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt;&gt;&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a><br>&gt;     &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt;&gt;&gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;             --<br>&gt;     &gt;          &gt;                          &gt;      &gt;             mandra<br>&gt;     &gt;          &gt;                          &gt;      &gt;             c:<a href="tel:410.258.5281" value="+14102585281" target="_blank">410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt;&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt;<br>&gt;      &gt;         &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt;&gt;&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a><br>&gt;     &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt;&gt;&gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;<br>&gt;     &gt;          &gt;                          &gt;      &gt;         --<br>&gt;     &gt;          &gt;                          &gt;      &gt;         mandra<br>&gt;     &gt;          &gt;                          &gt;      &gt;         c:<a href="tel:410.258.5281" value="+14102585281" target="_blank">410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt;&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt;<br>&gt;      &gt;         &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt;&gt;&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a><br>&gt;     &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt;&gt;&gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;         _________________________________________________________________________<br>&gt;     &gt;         &gt;                          &gt;      &gt;         Professional FreeSWITCH Consulting Services:<br>&gt;      &gt;         &gt;                          &gt;      &gt;<a>consulting@freeswitch.org</a><span> </span>&lt;mailto:<a>consulting@freeswitch.org</a>&gt;<br>&gt;     &lt;mailto:<a>consulting@freeswitch.org</a><span> </span>&lt;mailto:<a>consulting@freeswitch.org</a>&gt;&gt; &lt;javascript:;&gt;<br>&gt;      &gt;         &gt;                         &lt;javascript:_e(%7B%7D,&#39;cvml&#39;,&#39;<a>consulting@freeswitch.org</a><br>&gt;     &lt;mailto:<a>consulting@freeswitch.org</a>&gt; &lt;mailto:<a>consulting@freeswitch.org</a><span> </span>&lt;mailto:<a>consulting@freeswitch.org</a>&gt;&gt;<br>&gt;     &lt;javascript:;&gt;&#39;);&gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;<a href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;         Official FreeSWITCH Sites<br>&gt;     &gt;         &gt;                          &gt;      &gt;<a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt;     &gt;         &gt;                          &gt;      &gt;<a href="http://confluence.freeswitch.org/" target="_blank">http://confluence.freeswitch.org</a><br>&gt;     &gt;         &gt;                          &gt;      &gt;<a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;         FreeSWITCH-users mailing list<br>&gt;      &gt;         &gt;                          &gt;      &gt;<a>FreeSWITCH-users@lists.freeswitch.org</a><br>&gt;     &lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a>&gt; &lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a><br>&gt;     &lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a>&gt;&gt; &lt;javascript:;&gt;<br>&gt;      &gt;         &gt;                          &gt;     &lt;javascript:_e(%7B%7D,&#39;cvml&#39;,&#39;<a>FreeSWITCH-users@lists.freeswitch.org</a><br>&gt;     &lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a>&gt; &lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a><br>&gt;     &lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a>&gt;&gt; &lt;javascript:;&gt;&#39;);&gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>&gt;     &gt;         &gt;                          &gt;      &gt;         UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>&gt;     &gt;         &gt;                          &gt;      &gt;<a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt; --<br>&gt;     &gt;         &gt;                          &gt;      &gt; mandra<br>&gt;      &gt;         &gt;                          &gt;      &gt; c:<a href="tel:410.258.5281" value="+14102585281" target="_blank">410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a><br>&gt;     &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt;&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt;&gt;&gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt; _________________________________________________________________________<br>&gt;     &gt;         &gt;                          &gt;      &gt; Professional FreeSWITCH Consulting Services:<br>&gt;      &gt;         &gt;                          &gt;      &gt;<a>consulting@freeswitch.org</a><span> </span>&lt;mailto:<a>consulting@freeswitch.org</a>&gt;<br>&gt;     &lt;mailto:<a>consulting@freeswitch.org</a><span> </span>&lt;mailto:<a>consulting@freeswitch.org</a>&gt;&gt; &lt;javascript:;&gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;<a href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt; Official FreeSWITCH Sites<br>&gt;     &gt;         &gt;                          &gt;      &gt;<a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt;     &gt;         &gt;                          &gt;      &gt;<a href="http://confluence.freeswitch.org/" target="_blank">http://confluence.freeswitch.org</a><br>&gt;     &gt;         &gt;                          &gt;      &gt;<a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt; FreeSWITCH-users mailing list<br>&gt;      &gt;         &gt;                          &gt;      &gt;<a>FreeSWITCH-users@lists.freeswitch.org</a><br>&gt;     &lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a>&gt; &lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a><br>&gt;     &lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a>&gt;&gt; &lt;javascript:;&gt;<br>&gt;     &gt;         &gt;                          &gt;      &gt;<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>&gt;     &gt;         &gt;                          &gt;      &gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>&gt;     &gt;         &gt;                          &gt;      &gt;<a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt;     &gt;         &gt;                          &gt;      &gt;<br>&gt;     &gt;         &gt;                          &gt;<br>&gt;     &gt;         &gt;                          &gt;     --<br>&gt;     &gt;         &gt;                          &gt;     ------------------------------------------------------------<br>&gt;      &gt;         &gt;                          &gt;     Nathan<span> </span><a>Neulingernneul@mst.edu</a><span> </span>&lt;mailto:<a>Neulingernneul@mst.edu</a>&gt;<br>&gt;     &lt;mailto:<a>nneul@mst.edu</a><span> </span>&lt;mailto:<a>nneul@mst.edu</a>&gt;&gt; &lt;javascript:;&gt;<br>&gt;      &gt;         &gt;                          &gt;     Missouri S&amp;T Information Technology<a href="tel:%28573%29%20612-1412" value="+15736121412" target="_blank">(573) 612-1412</a><br>&gt;     &lt;<a href="tel:%28573%29%20612-1412" target="_blank">tel:%28573%29%20612-1412</a>&gt; &lt;<a href="tel:%28573%29%20612-1412" target="_blank">tel:%28573%29%20612-1412</a>&gt; &lt;<a href="tel:%28573%29%20612-1412" target="_blank">tel:%28573%29%20612-1412</a>&gt;<br>&gt;     &gt;         &gt;                          &gt;     System Administrator - Architect<br>&gt;     &gt;         &gt;                          &gt;<br>&gt;     &gt;         &gt;                          &gt;     _________________________________________________________________________<br>&gt;     &gt;         &gt;                          &gt;     Professional FreeSWITCH Consulting Services:<br>&gt;      &gt;         &gt;                          &gt;<a>consulting@freeswitch.org</a><span> </span>&lt;mailto:<a>consulting@freeswitch.org</a>&gt;<br>&gt;     &lt;mailto:<a>consulting@freeswitch.org</a><span> </span>&lt;mailto:<a>consulting@freeswitch.org</a>&gt;&gt; &lt;javascript:;&gt;<br>&gt;     &gt;         &gt;                          &gt;<a href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>&gt;     &gt;         &gt;                          &gt;<br>&gt;     &gt;         &gt;                          &gt;     Official FreeSWITCH Sites<br>&gt;     &gt;         &gt;                          &gt;<a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt;     &gt;         &gt;                          &gt;<a href="http://confluence.freeswitch.org/" target="_blank">http://confluence.freeswitch.org</a><br>&gt;     &gt;         &gt;                          &gt;<a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br>&gt;     &gt;         &gt;                          &gt;<br>&gt;     &gt;         &gt;                          &gt;     FreeSWITCH-users mailing list<br>&gt;      &gt;         &gt;                          &gt;<a>FreeSWITCH-users@lists.freeswitch.org</a><br>&gt;     &lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a>&gt; &lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a><br>&gt;     &lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a>&gt;&gt; &lt;javascript:;&gt;<br>&gt;     &gt;         &gt;                          &gt;<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>&gt;     &gt;         &gt;                          &gt;     UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>&gt;     &gt;         &gt;                          &gt;<a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt;     &gt;         &gt;                          &gt;<br>&gt;     &gt;         &gt;                          &gt;<br>&gt;     &gt;         &gt;                          &gt;<br>&gt;     &gt;         &gt;                          &gt; --<br>&gt;     &gt;         &gt;                          &gt; mandra<br>&gt;      &gt;         &gt;                          &gt; c:<a href="tel:410.258.5281" value="+14102585281" target="_blank">410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt;&gt;<br>&gt;     &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt;&gt;&gt;<br>&gt;     &gt;         &gt;                          &gt;<br>&gt;     &gt;         &gt;                          &gt;<br>&gt;     &gt;         &gt;                          &gt;<br>&gt;     &gt;         &gt;                          &gt; _________________________________________________________________________<br>&gt;     &gt;         &gt;                          &gt; Professional FreeSWITCH Consulting Services:<br>&gt;      &gt;         &gt;                          &gt;<a>consulting@freeswitch.org</a><span> </span>&lt;mailto:<a>consulting@freeswitch.org</a>&gt;<br>&gt;     &lt;mailto:<a>consulting@freeswitch.org</a><span> </span>&lt;mailto:<a>consulting@freeswitch.org</a>&gt;&gt;<br>&gt;     &gt;         &gt;                          &gt;<a href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>&gt;     &gt;         &gt;                          &gt;<br>&gt;     &gt;         &gt;                          &gt; Official FreeSWITCH Sites<br>&gt;     &gt;         &gt;                          &gt;<a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt;     &gt;         &gt;                          &gt;<a href="http://confluence.freeswitch.org/" target="_blank">http://confluence.freeswitch.org</a><br>&gt;     &gt;         &gt;                          &gt;<a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br>&gt;     &gt;         &gt;                          &gt;<br>&gt;     &gt;         &gt;                          &gt; FreeSWITCH-users mailing list<br>&gt;      &gt;         &gt;                          &gt;<a>FreeSWITCH-users@lists.freeswitch.org</a><br>&gt;     &lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a>&gt; &lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a><br>&gt;     &lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a>&gt;&gt;<br>&gt;     &gt;         &gt;                          &gt;<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>&gt;     &gt;         &gt;                          &gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>&gt;     &gt;         &gt;                          &gt;<a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt;     &gt;         &gt;                          &gt;<br>&gt;     &gt;         &gt;<br>&gt;     &gt;         &gt;                         --<br>&gt;     &gt;         &gt;                         ------------------------------------------------------------<br>&gt;      &gt;         &gt;                         Nathan<span> </span><a>Neulingernneul@mst.edu</a><span> </span>&lt;mailto:<a>Neulingernneul@mst.edu</a>&gt;<br>&gt;     &lt;mailto:<a>nneul@mst.edu</a><span> </span>&lt;mailto:<a>nneul@mst.edu</a>&gt;&gt;<br>&gt;      &gt;         &gt;                         Missouri S&amp;T Information Technology<a href="tel:%28573%29%20612-1412" value="+15736121412" target="_blank">(573) 612-1412</a> &lt;<a href="tel:%28573%29%20612-1412" target="_blank">tel:%28573%29%20612-1412</a>&gt;<br>&gt;     &lt;<a href="tel:%28573%29%20612-1412" target="_blank">tel:%28573%29%20612-1412</a>&gt; &lt;<a href="tel:%28573%29%20612-1412" target="_blank">tel:%28573%29%20612-1412</a>&gt;<br>&gt;     &gt;         &gt;                         System Administrator - Architect<br>&gt;     &gt;         &gt;<br>&gt;     &gt;         &gt;                         _________________________________________________________________________<br>&gt;     &gt;         &gt;                         Professional FreeSWITCH Consulting Services:<br>&gt;      &gt;         &gt;<a>consulting@freeswitch.org</a><span> </span>&lt;mailto:<a>consulting@freeswitch.org</a>&gt; &lt;mailto:<a>consulting@freeswitch.org</a><br>&gt;     &lt;mailto:<a>consulting@freeswitch.org</a>&gt;&gt;<br>&gt;     &gt;         &gt;<a href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>&gt;     &gt;         &gt;<br>&gt;     &gt;         &gt;                         Official FreeSWITCH Sites<br>&gt;     &gt;         &gt;<a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt;     &gt;         &gt;<a href="http://confluence.freeswitch.org/" target="_blank">http://confluence.freeswitch.org</a><br>&gt;     &gt;         &gt;<a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br>&gt;     &gt;         &gt;<br>&gt;     &gt;         &gt;                         FreeSWITCH-users mailing list<br>&gt;      &gt;         &gt;<a>FreeSWITCH-users@lists.freeswitch.org</a><span> </span>&lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a>&gt;<br>&gt;     &lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a><span> </span>&lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a>&gt;&gt;<br>&gt;     &gt;         &gt;<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>&gt;     &gt;         &gt;                         UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>&gt;     &gt;          &gt;<a href="http://www.freeswitch.org____/" target="_blank">http://www.freeswitch.org____</a><br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;                     --<br>&gt;     &gt;          &gt;                     mandra<br>&gt;      &gt;          &gt;                     c:<a href="tel:410.258.5281" value="+14102585281" target="_blank">410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt;&gt;<br>&gt;     &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt;&gt;&gt;____<br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;                     _________________________________________________________________________<br>&gt;     &gt;          &gt;                     Professional FreeSWITCH Consulting Services:<br>&gt;      &gt;          &gt;<span> </span><a>consulting@freeswitch.org</a><span> </span>&lt;mailto:<a>consulting@freeswitch.org</a>&gt; &lt;mailto:<a>consulting@freeswitch.org</a><br>&gt;     &lt;mailto:<a>consulting@freeswitch.org</a>&gt;&gt;<br>&gt;     &gt;          &gt;<a href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;                     Official FreeSWITCH Sites<br>&gt;     &gt;          &gt;<a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt;     &gt;          &gt;<a href="http://confluence.freeswitch.org/" target="_blank">http://confluence.freeswitch.org</a><br>&gt;     &gt;          &gt;<a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;                     FreeSWITCH-users mailing list<br>&gt;      &gt;          &gt;<span> </span><a>FreeSWITCH-users@lists.freeswitch.org</a><span> </span>&lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a>&gt;<br>&gt;     &lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a><span> </span>&lt;mailto:<a>FreeSWITCH-users@lists.freeswitch.org</a>&gt;&gt;<br>&gt;     &gt;          &gt;<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>&gt;     &gt;          &gt;                     UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>&gt;     &gt;          &gt;<a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;                 --<br>&gt;     &gt;          &gt;                 mandra<br>&gt;      &gt;          &gt;                 c:<a href="tel:410.258.5281" value="+14102585281" target="_blank">410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt;&gt;<br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;<br>&gt;     &gt;          &gt;             --<br>&gt;     &gt;          &gt;             mandra<br>&gt;     &gt;  &gt;     &gt;          &gt; --<br>&gt;     &gt;          &gt; mandra<br>&gt;     &gt;          &gt; c:<a href="tel:410.258.5281" value="+14102585281" target="_blank">410.258.5281</a> &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a>&gt; &lt;<a href="tel:410.258.5281" target="_blank">tel:410.258.5281</a><span> </span>&lt;<a href="tel:410.2" target="_blank">tel:410.2</a>&gt;      &gt;          &gt;<span> </span><a></a>&gt;     &lt;mailto:<a></a>&gt;     &lt;mailto:<a></a>&gt;     &gt; &gt;    &gt;  &gt;</blockquote></div></div><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"></div></blockquote></div></div></div></blockquote>
</div></div></div>