Commit Graph

1183 Commits

Author SHA1 Message Date
Michael Jerris 8246f730fc merge mod_cdr changes to trunk
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2188 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-27 17:05:27 +00:00
Anthony Minessale 4395e55493 typo
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2185 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-27 15:45:19 +00:00
Brian West 6f44fc9e1c Small name changes to reflect the actual module name.
/b


git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2171 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-26 21:43:53 +00:00
Anthony Minessale 3481f29c62 dox
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2169 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-26 20:20:13 +00:00
Anthony Minessale c4d890e0a4 Modify XML Dialplan
BTW, forget what I said yesterday RE: the strftime app I was at McDonalds, how can I concentrate there eh? 
see below....


The Definitive Guide To XML Dialplan:

The "dialplan" section of the freeswitch.xml meta document may contain several contexts

<?xml version="1.0"?>
<document type="freeswitch/xml">
  <section name="dialplan" description="Regex/XML Dialplan">
    <!-- the default context is a safe start -->
    <context name="default">

    <!-- one or more extension tags -->

    </context>
    
    <!-- more optional contexts -->
  </section>
</document>

The important thing to remember is that the dialplan is parsed once when the call
hits the dialplan parser in the RING state.  With one pass across the XML the result
will be a complete list of instructions installed into the channel based on
 parsed <action> or <anti-action> tags.

Those accustomed to Asterisk may expect the call to follow the dialplan by executing the 
applications as it parses them allowing data obtained from one action to influence the next action.
This not the case with the exception being the %{api func} {api arg} field type where an pluggable api call from
a module may be executed as the parsing occurs but this is meant to be used to draw realtime info such as
date and time or other quickly accessible information and shold *not* be abused.


The anatomy of an <extension> tag.

Legend: 
Text wrapped in [] indicates optional and is not part of the actual code.
a '|' inside [] indicates mutiple possible values and also is not part of the code.
Text wrapped in {} indicates it's a description of the parameter in place of the param itself.

<extension name="{exten_name}" [continue="[true|false]"]> 

continue=true means even if an extension executes to continue
parsing the next extension too

The {exten_name} above may anything but if it's 
an exact match with the destination number the parser will leap to this extension
to begin the searching that does not mean it will execute the extension.

Searching will either begin at the first extension in the context or at the point
the the parser has jumped to in the case described above.

Each condition is parsed in turn first taking the 'field' param.
The parser will apply the perl regular expression to each 'field' param encountered.

If the expression matches, it will parse each existing <action> tag in turn and add 
the data from the <application> tags to the channels todo list.	

If a matched expression contains any data wrapped in () the variables
$1,$2..$N will be valid and expanded in any of 'data' params from the subsequent action tags.

If the expression does NOT match, it will parse each <anti-action> tag in turn and add 
the data from the <application> tags to the channels todo list.
*NOTE* since there was no match the () feature is not availabe in anti-actions

The 'break' param indicates how to behave in relation to matching:
*) 'on-true'  - stop searching conditions after the first successful match.
*) 'on-false' - stop searching after the first unsuccessful match.
*) 'always'   - stop at this conditon regardless of a match or non-match.
*) 'never'    - continue searching regardless of a match or non-match.

<condition field="[{field name}|${variable name}|%{api func} {api arg}]" expression="{expression}" break="[on-true|on-false|always|never]">
  <action application="{app name}" data="{app arg}"/>
  <anti-action application="{app name}" data="{app arg}"/>
</condition>

  <!-- any number of condition tags may follow where the same rules apply -->
</extension>




git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2167 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-26 20:12:49 +00:00
Anthony Minessale c48208e578 Add strftime app to the dp_tools
Use in the dialplan like so:

<!-- continue="true" means keep searching even when you have a match -->
<extension name="set-date" continue="true">
  <condition>
    <action application="strftime" data="NOW=%H:%M"/>
  </condition>
</extension>

<extension name="route-date">
  <condition field="$NOW" expression="^0[34].*">
    <action application="playback" data="/tmp/cluecon1.wav"/>
  </condition>
</extension>





git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2144 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-25 23:51:38 +00:00
Anthony Minessale da4ae7be4c add metadata functions to sound file api
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2139 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-25 22:37:52 +00:00
Anthony Minessale da8484382c move unix builds to apr 1.2.7, sqlite 3.3.6 and libsndfile 1.0.16
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2112 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-25 15:11:15 +00:00
Anthony Minessale 9727efd842 Change the socket protocol and the sample client to use multiline input
valid input:

-------------------------
<command>[ <args>]

-------------------------
or
-------------------------
<command>[ <args>]
Header1: Val
HeaderN: Val

-------------------------





git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2109 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-25 14:14:07 +00:00
Michael Jerris ae4ff80250 Add MysqlCDR to mod_cdr build on windows.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2085 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-24 20:10:12 +00:00
Brian West 8d45333627 fix for mac
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2083 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-24 19:16:58 +00:00
Anthony Minessale da67398911 add stricter checking
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2082 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-24 18:56:20 +00:00
Michael Jerris e9a3ad4877 Start getting mod_cdr w/ mysql to build on windows. Still more to do on this.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2080 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-24 18:30:41 +00:00
Anthony Minessale 3bc5fd502b fixup custom event stuff
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2078 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-24 15:45:36 +00:00
Michael Jerris f723e57b61 Initial merge of mod_cdr. Big thanks to Yossi Neiman for this huge contribution. Please note that this is still somewhat a work in progress, but it works.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2077 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-24 15:19:05 +00:00
Michael Jerris e80c5808fb fix windows issue when building with C++.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2074 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-24 06:48:01 +00:00
Michael Jerris 85d442615e fix C linkage when using templates issue when building C++ modules in msvc that stems from including some windows header files inside of an extern C block, when building with C++.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2070 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-24 04:31:28 +00:00
Michael Jerris 5378e48454 add mod_event_socket to windows build.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2049 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-22 22:16:06 +00:00
Anthony Minessale 9ef48b6e1f dox
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2048 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-22 21:52:53 +00:00
Anthony Minessale 9c79c2a3fb Add mod_event_socket remote client module and sample client.
To Test:

uncomment or add from modules.conf
make installall again to compile it
uncomment the load line from freeswitch.xml

the default values are to bind to 127.0.0.1 port 8021

telnet to port 8021
enter "auth ClueCon" to authenticate

from here you can do the following:
*) events [xml|plain] <list of events to log or all for all>
*) noevents 
*) log <level> // same as the console.conf values
*) nolog
*) api <command> <arg>
*) exit

there is a perl client in scripts/socket called fs.pl

with the module up and loaded:
cd scripts/socket
perl fs.pl <optional log level>

you can enter a few api commands like "show or status"




git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2047 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-22 21:49:52 +00:00
Anthony Minessale ca98141ed7 enhance the show command
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2011 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-20 03:55:07 +00:00
Anthony Minessale e270bb4b7d fix xml no config catch-22
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1999 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-19 21:14:49 +00:00
Anthony Minessale 031af56d99 add a count to show
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1992 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-19 19:16:42 +00:00
Anthony Minessale 72d0128f95 name change for c++ compate
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1988 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-19 18:34:28 +00:00
Anthony Minessale 8c51cc2934 small fix to sql shipping stuff
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1963 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-19 01:19:46 +00:00
Anthony Minessale aee6cc27e1 codec tweak
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1957 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-18 18:34:42 +00:00
Anthony Minessale f5ea0ca767 add alt speex
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1952 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-18 14:51:59 +00:00
Anthony Minessale 65415c283b add cepstral legal goodies
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1916 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-17 18:19:00 +00:00
Anthony Minessale e8ba83de97 add cepstral legal goodies
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1912 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-17 18:05:13 +00:00
Anthony Minessale 7712c6637c messaging stuff
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1902 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-17 14:12:07 +00:00
Michael Jerris 7abfa425bd fix msvc build problem downloading some libs.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1901 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-17 14:09:45 +00:00
Anthony Minessale c7a4c4a1dc fix printf args
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1886 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-14 21:16:01 +00:00
Anthony Minessale f45ecee214 fix command parser
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1885 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-14 21:15:26 +00:00
Michael Jerris 0d82c97797 Fix win32 Build
Update win32 Setup
add show calls and show channels


git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1884 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-14 19:55:55 +00:00
Anthony Minessale 4aab8842cd tweaks for wideband tests
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1883 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-14 19:42:09 +00:00
Anthony Minessale 2b4ddd0576 add fmtp to sip
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1882 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-14 19:20:54 +00:00
Anthony Minessale a7294a1c95 add fmtp to sip
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1881 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-14 18:31:23 +00:00
Anthony Minessale 541a27bf1b dox
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1876 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-14 12:17:01 +00:00
Anthony Minessale e15c171d6c tweak speex
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1871 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-13 22:14:52 +00:00
Anthony Minessale 6d43892f22 add effective callerid variables
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1867 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-13 17:58:28 +00:00
Anthony Minessale e73ee221d2 add mod_dptools, for set variable and sleep from the dialplan
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1864 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-13 13:20:20 +00:00
Anthony Minessale 45dd9a44cd fix sql stmts
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1857 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-13 01:06:06 +00:00
Anthony Minessale 6414ff552b rss string tweaks
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1853 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-12 22:03:00 +00:00
Anthony Minessale 0c1c2748ed chage js to allow log levels in console_log()
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1852 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-12 21:23:22 +00:00
Anthony Minessale 6495209695 tweak pt 2
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1851 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-12 20:33:10 +00:00
Anthony Minessale 3e85edb2aa tweak
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1850 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-12 20:31:16 +00:00
Anthony Minessale d77e574d4e rearrange the furnature
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1846 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-12 18:39:19 +00:00
Michael Jerris 03ac8289e8 fix windows build
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1833 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-11 20:59:07 +00:00
Anthony Minessale 34882f7a60 fix logical error
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1830 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-11 17:39:50 +00:00
Anthony Minessale 168c6db00d adj iax to use the intervals thing
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1819 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-10 22:24:57 +00:00
Anthony Minessale 2838ad4a9b restructure codec code
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1818 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-10 22:08:02 +00:00
Brian West e9fc56225f tweak (work in progress)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1816 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-10 20:28:22 +00:00
Brian West d99c1605a1 dont pre_answer after actual answer
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1814 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-10 19:51:19 +00:00
Anthony Minessale cdac907624 break 2 loops instead of 1
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1813 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-10 17:10:40 +00:00
Anthony Minessale b9195e2db9 add ability to set mute and deaf flag from the dialplan +flags{<mute>|<deaf>}
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1811 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-10 16:28:54 +00:00
Anthony Minessale 4b4cca9c56 forgot a few stupid things, here they are
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1795 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-08 19:11:09 +00:00
Anthony Minessale 47b3010ce7 fix param names
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1789 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-07 19:07:07 +00:00
Anthony Minessale b5a19020f7 add session counter and make all sessions hang up elegantly on shutdown
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1788 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-07 18:59:14 +00:00
Anthony Minessale ecb7c08923 Add volume, gain and energy controls.
DTMF:
1 = volume down
2 = volume default
3 = volume up
4 = gain down
5 = gain default
6 = gain up
7 = energy level down
8 = energy level default
9 = energy level up
* = toggle mute + deaf
0 = toggle mute
# = quit 

new api commands to adj volume, gain and energy



git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1787 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-07 16:47:20 +00:00
Anthony Minessale d3509c6b98 small change for energy detection stuff
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1783 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-07 13:38:14 +00:00
Anthony Minessale 3837f5d242 fix segfault
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1773 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-06 22:12:15 +00:00
Anthony Minessale ee5e2e0994 add a new software conference module (mod_conference)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1770 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-06 20:12:53 +00:00
Anthony Minessale 8e60a68f14 add more l16 implementations and fix a typo
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1738 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-03 19:46:32 +00:00
Anthony Minessale c26480656f minor adj
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1716 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-30 21:45:29 +00:00
Anthony Minessale 7bcecfb149 add header to portaudio
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1705 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-29 13:48:52 +00:00
Anthony Minessale 22e3e0f6df core tweaks
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1695 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-28 19:12:56 +00:00
Anthony Minessale e30e2c5cbd make toxml generate nicer output
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1682 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-26 18:26:56 +00:00
Anthony Minessale ef8635e55e make toxml generate nicer output
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1681 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-26 18:26:23 +00:00
Anthony Minessale ee19beb17a adj
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1679 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-26 14:59:39 +00:00
Anthony Minessale 3ba26db705 move iana codes to the implementations.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1666 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-23 20:14:29 +00:00
Anthony Minessale ce2a9d2636 add more mutexed flag ops
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1664 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-23 16:59:47 +00:00
Anthony Minessale 4052fc3e2d doh wrong pool
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1663 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-23 04:28:15 +00:00
Anthony Minessale 91049dae9b put some mutexes on some flags
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1662 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-22 23:56:09 +00:00
Anthony Minessale f56e07842f add set/clear flag locked macros
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1661 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-22 23:38:44 +00:00
Anthony Minessale 988841611a dingaling tweak
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1660 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-22 21:57:40 +00:00
Anthony Minessale 4fb9e6e76b sync
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1659 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-22 20:42:44 +00:00
Anthony Minessale e4cbd93db8 clear up SDP fiasco
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1657 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-22 19:15:10 +00:00
Michael Jerris b88f2a0fa0 fix off by 1 error in mod_exosip sdp negotiation code. Thanks Pawel for finding this.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1640 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-16 17:17:50 +00:00
Michael Jerris 76f98bd034 add options to show api command to show applications, codecs, file formats, ect. and cleanup the output format of this command. Thanks jkr888 (Johny Kadarisman) for the contribution.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1630 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-15 06:02:08 +00:00
Michael Jerris 4fc49afe9e add speak text debug message
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1627 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-15 03:16:44 +00:00
Michael Jerris 50012d6124 wording change
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1625 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-14 18:03:33 +00:00
Michael Jerris d712f2e69a change wording
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1624 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-14 16:54:55 +00:00
Michael Jerris c57a735ac3 enable match_count by default
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1623 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-14 16:52:24 +00:00
Anthony Minessale 6f1f9190bd wordbreaks
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1622 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-14 15:56:11 +00:00
Michael Jerris 838f9518c9 simplify some wording.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1621 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-14 14:54:43 +00:00
Michael Jerris 8e84e29693 add asserts to address segfaults on improper usage of the switch_channel api.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1617 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-13 22:25:58 +00:00
Michael Jerris 6a98739f2e fix off by 1 in console cmd handling. Thanks trixter for identifying this.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1616 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-13 21:41:16 +00:00
Michael Jerris 76dfa310c0 add access or function for channel variable iterator
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1612 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-13 01:49:18 +00:00
Michael Jerris 72183965af tweak mod_rss
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1609 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-12 17:57:26 +00:00
Michael Jerris 261e9c01c2 fix instructions for speed change.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1608 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-12 17:27:22 +00:00
Michael Jerris 0ae3b344dc make sure to use switch namespace on apr functions in modules.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1601 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-12 02:39:05 +00:00
Anthony Minessale 64c45ad16e formatting
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1598 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-11 03:21:00 +00:00
Anthony Minessale 68898a6cb4 fix rss small issue
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1597 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-11 03:11:04 +00:00
Anthony Minessale 40e7848917 dox
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1596 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-11 01:55:50 +00:00
Anthony Minessale 2191312114 rss minor mods
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1594 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-10 20:57:15 +00:00
Michael Jerris f9cdd8aacc Fix xml error message on bad config file.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1591 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-10 03:45:08 +00:00
Anthony Minessale fe32a839df use channel flag to tell when to read from channel during some stuff
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1590 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-09 22:59:13 +00:00
Anthony Minessale 1212c95e55 tweak ivr
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1589 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-09 19:54:53 +00:00
Anthony Minessale d607494ac0 add mlockall
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1584 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-09 15:39:12 +00:00
Anthony Minessale f7e6e52855 add speak application
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1583 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-09 15:15:58 +00:00
Anthony Minessale 79f8e133f1 just in case make autoadj harder for spoofers
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1580 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-09 00:40:04 +00:00
Anthony Minessale b3e047f386 merge
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1579 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-08 22:03:23 +00:00
Michael Jerris 21f0c64dc3 mod_rss msvc build
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1577 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-08 19:44:43 +00:00
Anthony Minessale b51ae73950 tweak
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1576 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-08 19:41:14 +00:00
Anthony Minessale 0b5a75017d ivr stuff (part 2)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1574 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-08 19:26:39 +00:00
Anthony Minessale 5c57580955 ivr stuff (part 1)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1573 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-08 19:22:54 +00:00
Michael Jerris 7ac4e54ef9 add early audio message hook.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1572 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-08 15:28:42 +00:00
Anthony Minessale 425c5f282b yep
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1571 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-08 15:20:46 +00:00
Anthony Minessale 7b4cc868e4 ivr stuff
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1569 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-08 01:58:37 +00:00
Michael Jerris 9c2442886d merge anthm fix for atoi(NULL) segfault. Thanks jart for identifying the problem.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1560 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-07 21:55:17 +00:00
Anthony Minessale 8b7f997c3f update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1557 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-07 14:53:13 +00:00
Michael Jerris 1c0caef630 add forgotten file.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1556 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-07 01:00:58 +00:00
Michael Jerris b6f100a256 add mod_rss to msvc build.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1555 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-07 01:00:11 +00:00
Anthony Minessale 5c84b4b92b update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1554 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-06 23:52:12 +00:00
Anthony Minessale ae806dc793 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1553 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-06 23:49:02 +00:00
Anthony Minessale 68d419869a update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1552 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-06 23:20:42 +00:00
Anthony Minessale 9a43ccab24 add mod_rss
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1551 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-06 23:07:37 +00:00
Anthony Minessale cd3e5e83c2 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1548 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-06 16:22:08 +00:00
Anthony Minessale 5337872ce8 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1545 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-05 18:36:02 +00:00
Michael Jerris e9563fbf5d make snprintf commands use the path seperator macro.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1544 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-05 18:12:33 +00:00
Anthony Minessale 7c7c42a6bf update queue len
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1542 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-05 17:37:24 +00:00
Anthony Minessale ebd871ff10 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1538 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-03 17:06:39 +00:00
Anthony Minessale 15b99a3bbf make extensions linkable (thanks mishehu)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1537 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-03 17:06:06 +00:00
Anthony Minessale 0019a2df8b add auth to xmlrpc
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1530 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-01 17:16:15 +00:00
Michael Jerris 33e6c1fab1 fix potentially uninitiallized var.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1528 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-31 13:56:50 +00:00
Anthony Minessale 160fe134e6 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1526 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-30 17:47:07 +00:00
Anthony Minessale cfae7d1581 fix sample goodies
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1525 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-30 17:19:01 +00:00
Anthony Minessale ac8a3e43ea buffer was too small on cepstral damn it
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1516 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-27 18:39:20 +00:00
Anthony Minessale baa257f2fe update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1513 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-27 00:24:32 +00:00
Anthony Minessale 3d6bdeed03 You must be joshing!, the sdp wasn't being parsed right!
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1512 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-26 21:44:48 +00:00
Anthony Minessale 3995ca8c00 add vars to fields in dp
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1511 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-26 19:25:00 +00:00
Anthony Minessale bf6d91c3fd reloadxml
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1509 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-26 17:27:09 +00:00
Anthony Minessale ab3f42c9c4 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1508 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-26 16:00:08 +00:00
Anthony Minessale 79dcf1969a update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1499 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-24 16:10:05 +00:00
Anthony Minessale a4fc74c37e update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1497 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-24 14:42:21 +00:00
Michael Jerris 6853b563c4 use dynamic lib for pcre on windows.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1492 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-23 16:38:48 +00:00
Anthony Minessale b7c69be9cc update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1486 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-20 20:50:09 +00:00
Anthony Minessale 21c2b5812e update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1476 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-17 00:58:21 +00:00
Michael Jerris 31ee0d59fc normalize configuration parameters to use - instead of _.
Break everybody's configuration.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1475 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-16 17:08:21 +00:00
Anthony Minessale 0048061a7a update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1473 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-16 13:37:59 +00:00
Anthony Minessale e53dd9be16 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1468 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-15 21:06:45 +00:00
Anthony Minessale 9d68a23929 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1467 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-15 18:16:43 +00:00
Michael Jerris 73ff3c89a6 move switch_version.h to be a private header.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1463 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-15 15:00:10 +00:00
Anthony Minessale 43b6962933 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1456 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-13 01:32:50 +00:00
Michael Jerris 2a07e46e34 allow msvc build to work from source directory with a space in it.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1454 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-12 22:55:12 +00:00
Anthony Minessale 6daaf0844c update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1453 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-12 22:01:31 +00:00
Michael Jerris 3cb9008799 type tweaks.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1449 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-12 19:39:45 +00:00
Anthony Minessale 6bf06c5227 sox
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1448 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-12 19:38:02 +00:00
Anthony Minessale d53d9d3997 rearrange some things please see conf/freeswitch.xml as there is a significant change to the conf that will break your stuff
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1446 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-12 19:28:21 +00:00
Anthony Minessale d314140374 cleanup
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1445 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-12 15:33:49 +00:00
Anthony Minessale 7df4d982d6 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1439 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-12 01:12:40 +00:00
Anthony Minessale e41718baa8 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1438 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-12 01:10:31 +00:00
Michael Jerris 49c502dbbd fix potential int overflow for return from time()
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1436 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-11 22:13:13 +00:00
Anthony Minessale f2911fa352 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1435 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-11 21:36:57 +00:00
Anthony Minessale e3856f92e4 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1434 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-11 21:19:43 +00:00
Anthony Minessale 174ad6edc8 sip reg
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1433 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-11 21:11:20 +00:00
Michael Jerris 64c80bd894 fix dox
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1428 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 21:28:28 +00:00
Anthony Minessale 8977778bd3 dox
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1426 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 20:02:01 +00:00
Anthony Minessale 295424544d update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1425 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 19:07:38 +00:00
Michael Jerris 3230f6ef20 code before declaration.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1424 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 18:04:17 +00:00
Michael Jerris af6d8fa271 adding mod_xml_rpc to windows build part 2/2
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1423 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 17:48:15 +00:00
Anthony Minessale 23ad0603e6 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1422 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 17:29:24 +00:00
Anthony Minessale c11d972848 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1420 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 17:14:40 +00:00
Anthony Minessale 9eb3de9b9a update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1419 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 16:56:07 +00:00
Anthony Minessale ffedb5163a update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1418 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 16:47:02 +00:00
Michael Jerris 4977d27788 adding mod_xml_rpc to windows build part 1/2
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1417 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 16:39:09 +00:00
Michael Jerris ead82d86fd msvc types tweaks.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1416 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 16:37:56 +00:00
Anthony Minessale 87152f99ed update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1415 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 16:35:42 +00:00
Anthony Minessale 9304f3909b update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1414 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 16:10:18 +00:00
Anthony Minessale c1d0488201 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1413 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 15:53:10 +00:00
Anthony Minessale f09491a69b XMLification (wave 4)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1412 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 15:47:54 +00:00
Michael Jerris 7c0fce5a01 correctly fix potential int type rollover in switch_core_measure_time.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1411 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 04:42:31 +00:00
Michael Jerris a9a5a48209 export switch_xml_free for use by modules.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1409 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 04:10:23 +00:00
Michael Jerris 1b97a9b8a8 msvc build fixes to core from XMLification commit.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1408 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 04:06:01 +00:00
Michael Jerris f5f1f5f26f fix potential int type rollover in switch_core_measure_time.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1407 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 04:05:07 +00:00
Anthony Minessale 751e2db03d update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1406 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 03:54:53 +00:00
Anthony Minessale 646f764ae4 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1404 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 03:40:52 +00:00
Anthony Minessale 95a4c259ce XMLification (wave 3)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1403 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 03:30:22 +00:00
Anthony Minessale dbcd3f4690 XMLification (wave 2)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1402 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 03:27:00 +00:00
Anthony Minessale 93666f6dd7 XMLification (wave 1)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1401 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-10 03:23:05 +00:00
Michael Jerris e00f82c550 solaris updates.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1394 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-08 04:07:30 +00:00
Anthony Minessale 67ff0782a1 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1379 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-05 21:58:13 +00:00
Michael Jerris 93345ede86 make switch_xml work on windows part 1/2
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1378 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-05 21:39:29 +00:00
Anthony Minessale 8b26a521cc update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1377 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-05 21:31:19 +00:00
Anthony Minessale 3058335e80 add xml
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1376 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-05 21:05:11 +00:00
Anthony Minessale dfe5b94baf update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1374 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-05 16:52:19 +00:00
Anthony Minessale 05441e62a2 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1373 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-05 16:17:36 +00:00
Anthony Minessale 2e0da1e8f7 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1372 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-05 16:03:15 +00:00
Michael Jerris 9fbaceaa90 adjust types.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1371 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-05 14:41:49 +00:00
Anthony Minessale 2e017dd02d update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1370 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-05 14:33:36 +00:00
Anthony Minessale 33d96b7954 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1369 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-05 14:30:07 +00:00
Anthony Minessale 28173df273 make crash protection a configure option --enable-crash-protection and make mini-rtp have 4 byte headers
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1368 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-05 13:35:33 +00:00
Anthony Minessale 1fb17acaa8 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1365 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-05 02:58:44 +00:00
Anthony Minessale 49f81a7594 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1364 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-05 02:29:17 +00:00
Anthony Minessale 56b7a4f522 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1363 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-05 02:18:06 +00:00
Anthony Minessale cb94039d53 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1362 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-05 02:08:39 +00:00
Anthony Minessale 92e916d1e6 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1361 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-05 02:06:28 +00:00
Anthony Minessale 130b9569b9 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1359 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 20:55:34 +00:00
Anthony Minessale eab30104d4 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1358 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 20:38:36 +00:00
Anthony Minessale a4b1fdc709 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1357 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 20:38:01 +00:00
Anthony Minessale 51241ad37f update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1355 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 20:19:23 +00:00
Anthony Minessale 23d6224dab gather 2833 into RTP core and a few tweaks
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1351 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 17:51:53 +00:00
Michael Jerris 81c4e9f959 add initial bits of show api command. This still needs some work.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1350 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 16:04:04 +00:00
Michael Jerris c1a255075b make sqlite a dynamic lib for msvc.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1349 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 16:03:26 +00:00
Michael Jerris dc8cb51400 fix types for msvc
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1348 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 16:01:38 +00:00
Anthony Minessale b66707c155 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1346 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 15:39:14 +00:00
Anthony Minessale 83edba5385 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1345 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 15:37:06 +00:00
Anthony Minessale 49e7b1bbca update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1344 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 14:37:11 +00:00
Anthony Minessale 2546187cad update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1343 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 01:44:41 +00:00
Anthony Minessale e61acfba16 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1342 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 01:15:38 +00:00
Anthony Minessale a92ae5b64b update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1341 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 01:09:41 +00:00
Anthony Minessale 04f6f4f703 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1340 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 01:08:03 +00:00
Anthony Minessale bcc0f476c6 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1339 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 01:00:35 +00:00
Anthony Minessale 183e108ab7 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1338 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 00:54:58 +00:00
Anthony Minessale 7da19dc7ff update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1337 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 00:08:46 +00:00
Anthony Minessale de338c319d update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1336 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 00:07:20 +00:00
Anthony Minessale f0bb04453f update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1335 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-03 23:59:54 +00:00
Anthony Minessale 590cf84be1 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1333 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-03 23:45:07 +00:00
Anthony Minessale 51b19e6fa6 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1328 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-03 17:15:17 +00:00
Anthony Minessale b124890e48 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1327 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-03 17:03:27 +00:00
Anthony Minessale 9e93388543 commit
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1326 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-03 16:55:30 +00:00
Brian West 0a17cada81 linux and gnuc required for this feature.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1325 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-03 15:44:58 +00:00
Anthony Minessale ccab39a2e7 break some more stuff
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1319 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-02 17:42:24 +00:00
Anthony Minessale 397bf1bffc change dingaling to break everybody
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1318 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-02 16:43:13 +00:00
Michael Jerris b6545379d6 add interfaces to sqlite db table for quick show api commands (coming soon)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1313 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-01 19:44:21 +00:00
Anthony Minessale 607109bfaa update to dingaling (rm ./libs/libdingaling/.complete
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1312 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-01 18:55:04 +00:00
Anthony Minessale 913104b50c portaudio tweaks
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1311 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-01 17:20:30 +00:00
Anthony Minessale b2477412e4 fix mod_wanpipe types
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1309 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-01 04:29:44 +00:00
Anthony Minessale cc1c2a06e9 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1308 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-01 01:35:01 +00:00
Michael Jerris c904577269 C++ says we can't use "interface" as a variable name.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1305 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-30 18:24:24 +00:00
Anthony Minessale 7bacd1a0ad forgot a t
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1304 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-30 17:54:05 +00:00
Michael Jerris 14fee78470 part 3 of 3 standardizing typedefed types to end in _t.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1300 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-29 23:43:28 +00:00
Anthony Minessale 76f4a10a18 dox
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1299 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-29 21:36:10 +00:00
Anthony Minessale d8df00a0b7 change to new _t types for mod_wanpipe
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1297 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-29 06:58:08 +00:00
Michael Jerris 73a3adac8f part 2 of many standardizing typedefed types to end in _t
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1294 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-29 06:05:03 +00:00
Michael Jerris d0347b2a95 part 1 of many standardizing typedefed types to end in _t
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1292 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-29 01:00:52 +00:00
Michael Jerris 751ca005d3 use macro for EXTERN "C" begin and end lines in header files to clean up the headers, and to eliminate a format bug in emacs.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1291 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-28 20:04:08 +00:00
Anthony Minessale 35dc32018c add transfer capability and small ways to test it
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1290 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-28 19:46:57 +00:00
Anthony Minessale e1dc35f734 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1283 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-27 21:56:09 +00:00
Anthony Minessale c058d6543e fix
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1282 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-27 21:25:47 +00:00
Anthony Minessale 5ab733c606 crash prevention
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1281 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-27 21:09:58 +00:00
Anthony Minessale 24627a7a4b update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1279 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-27 15:59:58 +00:00
Anthony Minessale 31e31566a5 set some key functions to report the file func line of the caller not of the actual function
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1278 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-27 15:02:35 +00:00
Anthony Minessale 3c4d46c1cf update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1274 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-27 00:09:56 +00:00
Anthony Minessale 2a5d68dfea update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1273 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-26 23:24:00 +00:00
Anthony Minessale 152e42aa6c update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1272 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-26 23:09:48 +00:00
Anthony Minessale 842ae3a2f6 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1271 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-26 22:02:59 +00:00
Anthony Minessale ced844afdb update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1270 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-26 21:47:54 +00:00
Anthony Minessale d49eea0a72 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1269 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-26 21:40:35 +00:00
Anthony Minessale 88a25833a4 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1268 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-26 21:04:11 +00:00
Anthony Minessale 61af2f4d64 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1267 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-26 20:26:02 +00:00
Anthony Minessale 7d2756f14a update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1266 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-26 20:15:16 +00:00
Anthony Minessale 380bc2b68c update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1265 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-26 19:29:56 +00:00
Anthony Minessale 76b63d3a38 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1264 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-26 19:11:49 +00:00
Anthony Minessale b81e4d6c97 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1263 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-26 18:37:53 +00:00
Michael Jerris 364e2c53b2 variable type fixes and msvc tweaks
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1262 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-26 18:37:03 +00:00
Anthony Minessale f69aafcfe5 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1261 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-26 17:46:11 +00:00
Anthony Minessale d59cae60c7 add nitrous oxide tank to core event sql backend
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1260 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-26 17:18:33 +00:00
Michael Jerris a70b4a15a6 silence warning on msvc
C4132: 'object' : const object should be initialized
This is firing when there is a prototype for a const object declared later in the file.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1259 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-26 17:07:39 +00:00
Anthony Minessale 92bba4dbe6 adjust
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1255 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-25 23:11:56 +00:00
Anthony Minessale 1277a22e48 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1253 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-25 20:58:45 +00:00
Anthony Minessale ba6b7651b2 improve bridge code
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1251 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-25 18:02:12 +00:00
Michael Jerris a8e506e6f1 revert unintentional removal.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1250 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-25 16:59:53 +00:00
Anthony Minessale c096cd7137 add c99 setting to Makefile
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1249 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-25 16:54:33 +00:00
Michael Jerris 49783ee5c1 code before declaration.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1246 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-25 04:09:34 +00:00
Anthony Minessale fc8b3d1c5f tweak
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1245 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-25 00:45:22 +00:00
Anthony Minessale a3d0b78ea0 tweak loadable module code to allow registration for langauges that can in turn fully implement modules of thier own (e.g. mono)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1244 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-25 00:33:00 +00:00
Anthony Minessale cfdc15bc67 dox
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1241 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-24 16:19:11 +00:00
Michael Jerris aa750c18ce add linking for libetpan to js
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1240 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-24 14:54:21 +00:00
Michael Jerris e4e258dc62 fix types for msvc
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1239 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-24 14:53:54 +00:00
Anthony Minessale 6b57636823 causes part 3
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1232 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-22 18:12:17 +00:00
Anthony Minessale 3c70e6ac21 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1231 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-22 16:25:33 +00:00
Anthony Minessale 1917b792c5 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1230 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-22 16:12:03 +00:00
Anthony Minessale 1748885aae update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1229 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-22 16:06:55 +00:00
Anthony Minessale fcd00280f1 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1228 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-22 15:58:50 +00:00
Anthony Minessale 4e27e84673 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1227 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-22 15:07:02 +00:00
Anthony Minessale 1eb4d491a5 causes part 2
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1226 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-22 03:05:25 +00:00
Anthony Minessale 0cb0ad7c32 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1225 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-22 01:49:27 +00:00
Anthony Minessale 77b7a209e2 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1224 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-22 01:21:53 +00:00
Anthony Minessale 377090fa46 cause part 1
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1223 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-21 23:16:26 +00:00
Anthony Minessale a9f86cb58a add VAD
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1222 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-21 22:31:08 +00:00
Anthony Minessale a84fce3eb9 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1215 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-20 23:57:04 +00:00
Anthony Minessale da448c26a3 fix sangoma
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1214 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-20 18:05:15 +00:00
Anthony Minessale 1d09443663 update ip binding stuff to match
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1211 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-20 02:13:00 +00:00
Anthony Minessale 11c738f0e9 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1210 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-20 02:09:14 +00:00
Anthony Minessale a680625e0a add load command
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1209 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-20 00:58:06 +00:00
Anthony Minessale cf9eda446f update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1208 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-19 21:40:15 +00:00
Anthony Minessale 85c498b82f update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1207 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-19 21:28:28 +00:00
Anthony Minessale 130d8c68f0 add yucky hacks to make googletalk work with ilbc (shame on them)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1206 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-19 20:47:35 +00:00
Anthony Minessale 3c11be7fc2 add yucky hacks to make googletalk work with ilbc (shame on them)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1205 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-19 20:46:07 +00:00
Anthony Minessale ed53c98d67 add yucky hacks to make googletalk work with ilbc (shame on them)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1204 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-19 20:38:02 +00:00
Michael Jerris 0aab549821 add mod_ilbc
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1203 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-19 19:53:06 +00:00
Anthony Minessale 813a57776b cheat so jingle can use ilbc right
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1202 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-19 19:44:05 +00:00
Anthony Minessale 56cb227eb7 add ilbc
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1199 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-19 19:04:30 +00:00
Anthony Minessale a128d3179e update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1198 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-19 16:44:01 +00:00
Michael Jerris f2812dbcea fix build on msvc when building with non-english default codepage (strange carachters in a spidermonkey header file)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1197 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-19 16:30:51 +00:00
Anthony Minessale 8bdf8125ca update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1196 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-19 14:58:38 +00:00
Michael Jerris 6deb8b35df create typedef for payload type\iana code
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1188 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-18 16:50:34 +00:00
Anthony Minessale 912ecb2e43 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1187 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-18 16:40:18 +00:00
Anthony Minessale c0891ce9db update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1186 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-18 16:20:47 +00:00
Anthony Minessale 1f3dedbf2d update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1182 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-18 00:45:16 +00:00
Anthony Minessale 021ea0e724 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1181 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-18 00:24:52 +00:00
Michael Jerris 28de1cc4b0 improvements
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1177 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-17 18:52:11 +00:00
Michael Jerris c3a77d23bb improvements
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1176 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-17 18:25:43 +00:00
Michael Jerris 026e8d39ca Set log levels on many existing log messages. A huge thanks to James Martelletti for going through all the log calls to do this.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1173 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-16 06:05:53 +00:00
Michael Jerris fd7bf0eaaa update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1171 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-15 22:30:25 +00:00
Anthony Minessale c69c7416c0 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1170 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-15 16:02:31 +00:00
Anthony Minessale 8294fe2134 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1166 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-15 06:06:46 +00:00
Michael Jerris fcc08a1a95 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1165 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-15 05:56:23 +00:00
Anthony Minessale 56f66b92c1 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1164 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-15 05:20:07 +00:00
Michael Jerris a2e7d5f0b0 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1163 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-15 05:16:24 +00:00
Anthony Minessale 5d47cffc28 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1162 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-15 05:00:51 +00:00
Michael Jerris d0a103a343 Addition of mod_syslog for *nix. Thanks to James Martelletti.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1158 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-14 16:45:31 +00:00
Anthony Minessale d5457f8eca backend for session to session event trading
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1157 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-14 16:43:49 +00:00
Brian West 0ec4d10479 console tweak
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1156 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-14 15:59:22 +00:00
Michael Jerris 1ae960eb3f win32 tweaks
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1150 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-14 05:53:59 +00:00
Michael Jerris a2732737b5 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1149 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-14 03:12:55 +00:00
Michael Jerris d6d313884e update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1148 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-14 03:04:53 +00:00
Anthony Minessale cb28473398 add logger
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1147 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-14 02:05:29 +00:00
Michael Jerris 9503c9a8ac tweak
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1146 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-13 23:19:33 +00:00
Anthony Minessale a9438c51cb fix
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1145 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-13 21:34:04 +00:00
Brian West d98633c11a tweak
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1141 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-13 17:15:51 +00:00
Michael Jerris 81cb064f4b fix stuff that was wrong
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1140 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-13 16:19:49 +00:00
Michael Jerris ecc2a3baa1 let iax bind to specific ip (rm libs/iax/.complete next time you build)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1134 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-13 01:05:47 +00:00
Michael Jerris 345518019f tweak
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1133 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-13 00:47:16 +00:00
Michael Jerris d91f8ef358 fix all the bugs introduced by recent chainsaw massacre
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1132 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-12 20:48:47 +00:00
Brian West 4959cbff2b optimize
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1131 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-12 19:10:04 +00:00
Brian West 6469703905 optimize
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1130 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-12 18:53:42 +00:00
Brian West 04ccb6ffe6 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1129 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-12 18:01:27 +00:00
Brian West a9a23aed22 file/func specific logging
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1128 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-12 17:51:47 +00:00
Brian West 1fb8ba75d9 fix leak
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1127 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-12 16:44:57 +00:00
Anthony Minessale e2cae5587c dox
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1126 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-12 16:34:34 +00:00
Michael Jerris 9ac4da17f6 add stdio.h include for msvc, remove truncating cast warning, change to dynamic runtime on msvc. You can not pass FILE * between mods with differrent runtimes on msvc.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1125 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-12 15:25:26 +00:00
Brian West 53706b9fe2 dox and add a func to logger
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1124 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-12 15:04:26 +00:00
Brian West 1bb893efae enhance logger stuff
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1123 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-12 14:41:35 +00:00
Michael Jerris cf2bcc233a add logger and mod_console to win32 build, fix warnings.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1119 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-11 21:41:00 +00:00
Anthony Minessale 56b9ed852d dox
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1118 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-11 21:26:37 +00:00
Brian West 559b8ab26c Gut Logger and put it back modular style
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1117 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-11 21:13:44 +00:00
Brian West 628e59a3ae add some events and more data to core DB
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1115 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-11 14:55:14 +00:00
Michael Jerris 72820b56f2 type cast tweak to propper return type
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1113 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-10 23:31:48 +00:00
Brian West 2947a7e431 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1112 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-10 22:14:01 +00:00
Anthony Minessale 3c95e314fc SRTP should work now
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1111 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-10 22:03:38 +00:00
Brian West 255afc7c25 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1110 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-10 21:36:06 +00:00
Brian West 87fa936a04 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1109 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-10 19:55:53 +00:00
Anthony Minessale 4dda1b7b9a update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1108 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-10 18:28:46 +00:00
Brian West e28a9ee83b update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1107 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-10 18:09:02 +00:00
Brian West e907575bb3 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1106 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-10 17:27:26 +00:00
Brian West c1fdae08ad update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1105 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-10 17:25:59 +00:00
Brian West 82c1907380 2nd pass to add secure RTP
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1104 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-10 17:14:53 +00:00
Brian West 62fcb3bcc7 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1103 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-10 16:56:11 +00:00
Brian West 7a578a8951 1st pass to add secure RTP
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1102 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-10 16:11:24 +00:00
Brian West 786bf4d1cb update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1101 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-10 15:37:20 +00:00
Michael Jerris 9db533862d standardize to some more specific int types for frame size and rate variables.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1095 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-09 00:10:13 +00:00
Brian West 78e37908bc Add optional packetization and VAD buster options to RTP
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1090 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-07 17:32:14 +00:00
Brian West f029d97c64 small update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1081 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-07 03:57:03 +00:00
Anthony Minessale 0ebb25ec85 sick of this sip
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1078 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-07 01:27:45 +00:00
Anthony Minessale 6ba88701f5 10 millionth time's a charm
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1076 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-07 00:38:05 +00:00
Anthony Minessale 91c07a6351 tweak
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1075 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-07 00:14:16 +00:00
Anthony Minessale 3e376393f8 tweak
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1074 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-07 00:10:31 +00:00
Anthony Minessale 379083d8c7 tweak
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1073 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-07 00:05:42 +00:00
Anthony Minessale 46febe98bc add missing byte to dingaling
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1072 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-06 23:31:01 +00:00
Anthony Minessale 394a0c3c02 add payload accessor functions to rtp
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1071 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-06 21:08:30 +00:00
Anthony Minessale a2f709698f fix doxygen
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1070 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-06 20:59:25 +00:00
Anthony Minessale a203f3138e retool RTP API and downgrade previous constructor to back-compat convience function
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1069 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-06 20:56:29 +00:00
Anthony Minessale 0af60e1b2f move CNG into the core and rearrange a few things
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1066 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-06 19:50:53 +00:00
Anthony Minessale a55bb56ff2 petty dox typo
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1064 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-06 03:28:23 +00:00
Anthony Minessale 0eafe269bf add a new Protocol
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1063 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-06 03:15:41 +00:00
Anthony Minessale ce699a59b4 fix oversights in fix to oversights in recent doxygen commit
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1062 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-06 03:13:41 +00:00
Anthony Minessale 2e0c7b4cae fix oversights in recent doxygen commit
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1061 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-06 03:09:26 +00:00
Anthony Minessale 2356e4d43f make mod_sndfile less chatty on startup
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1060 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-06 02:55:09 +00:00
Anthony Minessale de88d7e8bd clean up some of the mess from the RTP additions and add doxygen comments
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1059 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-06 02:47:11 +00:00
Michael Jerris b2bc4eda48 type cast
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1055 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-05 22:51:31 +00:00
Anthony Minessale 650ae09f06 let sip have stun and make suncc happy
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1054 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-05 22:46:50 +00:00
Anthony Minessale df621b1a84 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1051 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-05 21:38:31 +00:00
Anthony Minessale 35b309e91b add stun to dingaling
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1049 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-05 20:17:22 +00:00
Michael Jerris cd06692667 sun cc flexible array members must be defined as [] not [0]
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1047 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-05 00:55:22 +00:00
Michael Jerris 967d19faf3 add mod_commands to msvc build system.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1046 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 22:17:27 +00:00
Anthony Minessale 5c5a0fe70b add mod_commands
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1045 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 22:03:59 +00:00
Anthony Minessale fc9be366fd internal tweaks
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1044 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 21:26:21 +00:00
Anthony Minessale cf16ac34a9 fix event system
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1043 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 18:47:34 +00:00
Anthony Minessale ef4556479b add inbound/outbound separation to pcre
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1042 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 17:59:07 +00:00
Anthony Minessale 3208bbfb80 ice ice baby (part 2)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1041 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 17:26:01 +00:00
Anthony Minessale fb796a0180 ice ice baby
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1040 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 17:22:06 +00:00
Michael Jerris 0fe4db12d0 move stun to the core
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1038 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 16:50:35 +00:00
Anthony Minessale 48792eb5fc a stunning new change
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1037 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 16:08:30 +00:00
Anthony Minessale 4fa64dd6d2 a stunning new change
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1036 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 16:07:40 +00:00
Michael Jerris 1a4224183f formatting tweaks.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1034 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 14:07:12 +00:00
Michael Jerris e72bbb118b remove jrtp from windows build system
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1031 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 05:18:18 +00:00
Brian West 6354ac9987 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1030 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 05:16:09 +00:00
Michael Jerris 271d4b48c0 correct types on invalid_handler
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1029 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 04:46:49 +00:00
Brian West c3dd8811dc small cleanup
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1028 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 04:31:33 +00:00
Brian West f8f7841f74 fix types uint32_t -> switch_size_t aka apr_size_t
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1027 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 04:27:20 +00:00
Michael Jerris 7f03b92fe6 switch_rtp windows tweaks and type changes.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1026 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 04:15:39 +00:00
Anthony Minessale ab65eb3873 migrate everything to apr sockets
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1025 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 02:28:11 +00:00
Anthony Minessale 18fe30cdf0 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1019 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-03 23:31:07 +00:00
Michael Jerris 32817ef343 msvc tweaks, more to come.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1018 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-03 22:58:40 +00:00
Brian West c3da050a32 small fix
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1016 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-03 22:19:55 +00:00
Brian West 5dbe00ab3b small signedness fix
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1014 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-03 21:10:55 +00:00
Anthony Minessale 6427e320df try out new builtin RTP using srtp lib
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1013 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-03 21:02:40 +00:00
Anthony Minessale 828e03715f try out new builtin RTP using srtp lib
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1012 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-03 21:00:13 +00:00