Commit Graph

13876 Commits (f82c42a22e6a0883c8b51b269d3be9c50e4cd6be)
 

Author SHA1 Message Date
Kevin P. Fleming 8ecda22e06 Merged revisions 89701 via svnmerge from
18 years ago
Olle Johansson 09e1c572d8 Starting to merge changes from the "moremanager" branch. Documentation will
18 years ago
Olle Johansson df7ba90b20 The following patch with updates for trunk. Works much better in trunk.
18 years ago
Jason Parker 35ecd08b46 Add an S_COR macro, which is similar to the existing S_OR macro,
18 years ago
Steve Murphy ab92fc1f35 made AEL 8-bit transparent; mainly the lexer was tossing chars with the hi-order bit set. Not nice. Also, allow @ in extension names, and a backslash, also.
18 years ago
Joshua Colp 98fbe822f5 Ensure the value returned from ast_random is between 0 and RAND_MAX on 64-bit platforms.
18 years ago
Russell Bryant df1689e927 Merged revisions 89634 via svnmerge from
18 years ago
Tilghman Lesher fd06a58800 Merged revisions 89631 via svnmerge from
18 years ago
Olle Johansson b1c0c67e76 Merged revisions 89624 via svnmerge from
18 years ago
Steve Murphy 4d8932a6dc Merged revisions 89622 via svnmerge from
18 years ago
Mark Michelson 180c3fb60e Change all instances of "CALLERID(number)" to "CALLERID(num)" for
18 years ago
Mark Michelson 5f3a28e588 Merged revisions 89618 via svnmerge from
18 years ago
Mark Michelson 0fe71dbb1a Blocked revisions 89616 via svnmerge
18 years ago
Russell Bryant 9bd421dd10 Update the configure script check for libpri to check for the newest function
18 years ago
Olle Johansson 11df6a9119 Rename "limitonpeer" to "counteronpeer" since the call-limit is deprecated.
18 years ago
Joshua Colp 89c0a0a763 Merged revisions 89610 via svnmerge from
18 years ago
Olle Johansson 5070d10864 Formatting, doxygenification
18 years ago
Olle Johansson 96ad455115 Formatting changes, cleaning up some code
18 years ago
Olle Johansson d4863bb0f0 Start using Doxygen groupings to group variables and defines.
18 years ago
Olle Johansson 130a2051fa - Mark "concise" as deprecated
18 years ago
Joshua Colp 0619fb1248 Perform some module use counting audits. This is now done outside the scope of the application/dialplan function so they do not need to worry about it.
18 years ago
Joshua Colp 23eecf8c61 Merged revisions 89599 via svnmerge from
18 years ago
Russell Bryant b11f846e7e Merged revisions 89594 via svnmerge from
18 years ago
Steve Murphy 4c992507f4 closes issue #11341; made changes to make utils again right with the MTX_PROFILE world.
18 years ago
Joshua Colp 9910b7d9a7 Merged revisions 89592 via svnmerge from
18 years ago
Steve Murphy d3209e2ef2 closes issue #11356; Many thanks to snuffy for his code review and changes to cut down duplication. I tested this against hashtest, and it passes. I reviewed the changes, and they look reasonable. I had to remove a few const decls to make things compile on my workstation,
18 years ago
Russell Bryant b1a8de2d40 make sure we check to see if the configure script has been executed on a new checkout or after a distclean
18 years ago
Joshua Colp 9905034266 Merged revisions 89587 via svnmerge from
18 years ago
Kevin P. Fleming 721b3c8a0e Merged revisions 89586 via svnmerge from
18 years ago
Steve Murphy 2ec4b57622 Thanks to pnlarsson for noting the spelling error in the cli commands. Also, added some verbage about the new algorithm to CHANGES.
18 years ago
Joshua Colp 72a8e08bf5 Revert change for 11348 until it can be looked at even more.
18 years ago
Mark Michelson 0b120dac62 Merged revisions 89580 via svnmerge from
18 years ago
Joshua Colp 867b734868 Merged revisions 89577 via svnmerge from
18 years ago
Joshua Colp a1b79aa278 Make the behavior of using /dev/urandom for random numbers the same as random().
18 years ago
Joshua Colp 71c602a2d1 Instead of printing out one codec in sip show channels print out all of the native ones (this is for video).
18 years ago
Joshua Colp 5303abd58d Merged revisions 89571 via svnmerge from
18 years ago
Joshua Colp 2c223a4512 Don't crash if the 'o' option of ControlPlayback is used without any value.
18 years ago
Olle Johansson c31c9d6291 Formatting changes
18 years ago
Olle Johansson 595961655a Try to get channel.h and channel.c aligned in regards to ast_set_callerid as well
18 years ago
Tilghman Lesher f1de129e5f Merged revisions 89559 via svnmerge from
18 years ago
Tilghman Lesher c8edf66bb4 Typo (someone needs to test compile before committing his changes)
18 years ago
Olle Johansson debdfd958c More doxygen changes
18 years ago
Olle Johansson b380467388 Housekeeping
18 years ago
Olle Johansson a2c95022ac Formatting, doxygen updates
18 years ago
Olle Johansson 07cb09ad86 - Deprecate "call-limit" in chan_sip. No other channel driver enforces call-limits
18 years ago
Olle Johansson 77e15c9b2f Housekeeping...
18 years ago
Steve Murphy a63f6be669 closes issue #11363; where the pattern _20x. buried in an included context, didn't match 2012; There were a small set of problems to fix: 1. I needed NOT to score patterns unless you are at the end of the data string. 2. Capital N,X,Z and small n,x,z are OK in patterns. I canonicalize the patterns in the trie to caps. 3. When a pattern ends with dot or exclamation, CANMATCH/MATCHMORE should always report this pattern, no matter the length. With this commit, I also supplied the wish of Luigi, where the user can select which pattern matching algorithm to use, the old (legacy) pattern matcher, or the new, trie based matcher. The OLD matcher is the default. A new [general] section variable, extenpatternmatchnew, is added to the extensions.conf, and the example config has it set to false. If true, the new matcher is used. In all other respects, the context/exten structs are the same; the tries and hashtabs are formed, but in the new mode the tries are not used. A new CLI command 'dialplan set extenpatternmatch true/false' is provided to allow switching at run time. I beg users that are forced to return to the old matcher to please report the reason in the bug tracker. Measured the speed benefit of the new matcher against an impossibly large context with 10,000 extensions: the new matcher is 374 times faster.
18 years ago
Tilghman Lesher c7e931eacf Merged revisions 89545 via svnmerge from
18 years ago
Steve Murphy 2e5b9d5875 Added <sys/file.h> include to allow trunk to compile. Hope this doesn't louse thing up.
18 years ago
Luigi Rizzo ce7120b7d5 remove a DEBUG_THREADS message that accesses private lock fields.
18 years ago