Commit Graph

527 Commits (ae1421e04d557f99687664c44c2e157a519c3ed1)

Author SHA1 Message Date
Luigi Rizzo fdb7f7ba3d Start untangling header inclusion in a way that does not affect
18 years ago
Russell Bryant 0df5e50e97 Use BEGIN_OPTIONS / END_OPTIONS to make the syntax highlighting in my editor happy
18 years ago
Steve Murphy 63f2f04cf4 This commits the performance mods that give the priority processing engine in the pbx, a 25-30% speed boost. The two updates used, are, first, to merge the ast_exists_extension() and the ast_spawn_extension() where they are called sequentially in a loop in the code, into a slightly upgraded version of ast_spawn_extension(), with a few extra args; and, second, I modified the substitute_variables_helper_full, so it zeroes out the byte after the evaluated string instead of demanding you pre-zero the buffer; I also went thru the code and removed the code that zeroed this buffer before every call to the substitute_variables_helper_full. The first fix provides about a 9% speedup, and the second the rest. These figures come from the 'PIPS' benchmark I describe in blogs, conf. reports, etc.
18 years ago
Matthew Fredrickson a4be521c89 Make sure we propogate ANI2 to the outbound channel
18 years ago
Tilghman Lesher 7adbd6bb16 Remove redundant includes (patch by snuffy) (Closes issue #10922)
18 years ago
Russell Bryant bff784d509 Merged revisions 84166 via svnmerge from
18 years ago
Joshua Colp 3ed4d505b7 Merged revisions 84158 via svnmerge from
18 years ago
Russell Bryant 9388173f85 Make the MALLOC_DEBUG output for free() useful again. After changing calls to
18 years ago
Jason Parker 836c550ce3 Merged revisions 81412 via svnmerge from
18 years ago
Joshua Colp 22114b509d Add support for using epoll instead of poll. This should increase scalability and is done in such a way that we should be able to add support for other poll() replacements.
18 years ago
Joshua Colp 9ef1b0a974 Extend the ast_senddigit and ast_dtmf_stream API calls to allow the duration of the DTMF digit(s) to be specified and make the SendDTMF application have the capability to use it.
18 years ago
Russell Bryant 4e0947c5f1 Convert code that checks the _softhangup member of ast_channel directory to use
18 years ago
Steve Murphy ceca4d97e1 These fixes take care of two problems: a complaint in asterisk-dev that goto's aren't working in trunk, a side effect of the move to commas as arg seps in apps and funcs; and a problem I spotted myself with dial's 'e' option, where gotos were off by one, because I forgot to set the AUTOLOOP flag in the peer channel.
18 years ago
Russell Bryant f8483a0d04 Do a massive conversion for using the ast_verb() macro
18 years ago
Tilghman Lesher 55b1ee298e Merge the dialplan_aesthetics branch. Most of this patch simply converts applications
18 years ago
Steve Murphy 0e969271ae After some study, thought, comparing, etc. I've backed out the previous universal mod to make ast_flags a 64 bit thing. Instead, I added a 64-bit version of ast_flags (ast_flags64), and 64-bit versions of the test-flag, set-flag, etc. macros, and an app_parse_options64 routine, and I use these in app_dial alone, to eliminate the 30-option limit it had grown to meet. There is room now for 32 more options and flags. I was heavily tempted to implement some of the other ideas that were presented, but this solution does not intro any new versions of dial, doesn't have a different API, has a minimal/zero impact on code outside of dial, and doesn't seriously (I hope) affect the code structure of dial. It's the best I can think of right now. My goal was NOT to rewrite dial. I leave that to a future, coordinated effort.
18 years ago
Mark Michelson ee6d59eef2 Merged revisions 75405 via svnmerge from
18 years ago
Steve Murphy 8a7732f067 via 10206, I have added an option (e) to Dial to allow the h exten to get run on peer. Had to upgrade ast_flag stuff to 64 bits to do this.
18 years ago
Jason Parker 766121a5bc Fix an incorrect parenthesization (TODO: Find a better word) in app_dial
18 years ago
Mark Michelson ce8f95d750 Merged revisions 75253 via svnmerge from
18 years ago
Joshua Colp b8cd949cce Applications no longer need to call ast_module_user_add and ast_module_user_remove. This is now taken care of in the pbx_exec function outside of the application.
18 years ago
Joshua Colp 96a646734f It is no longer required for each module that deals with a channel to call ast_module_user_hangup_all in it's unload function. The loader will automatically perform this action for it.
18 years ago
Olle Johansson a1b9cbcd31 Implementation of a feature that will disable "missed calls" counters on SIP phones.
18 years ago
Tilghman Lesher 8b93f50dfc Merged revisions 73053 via svnmerge from
18 years ago
Tilghman Lesher a1bc823136 Issue 9990 - New API ast_mkdir, which creates parent directories as necessary (and is faster than an outcall to mkdir -p)
18 years ago
Steve Murphy 2462d5ab4f Cleaning up a small disaster I created earlier
18 years ago
Steve Murphy 57526b35cc As per 9228, now app_queue should have the proper machinery to do gosubs.
18 years ago
Tilghman Lesher ce2c52d519 Merged revisions 70445 via svnmerge from
18 years ago
Tilghman Lesher 704c756c4a Merge work to make U(...) option work for Dial
18 years ago
Steve Murphy 866bbaa515 Via bug9228, no way to create macros via AEL, and some of the apps allow you to call macros..., I modded the apps that allow macro calls to allow gosubs calls also, to make them AEL compliant.
18 years ago
Russell Bryant 055d82cbce Add a massive set of changes for converting to use the ast_debug() macro.
18 years ago
Russell Bryant 9e0458e9f1 Completely remove all of the code related to jumping to priority n + 101. yay!
18 years ago
Joshua Colp 2492bf26fb Merged revisions 68071 via svnmerge from
18 years ago
Tilghman Lesher 9d05ff8ed5 Issue 9869 - replace malloc and memset with ast_calloc, and other coding guidelines changes
18 years ago
Joshua Colp bae04fd90e Merged revisions 67066 via svnmerge from
18 years ago
Steve Murphy 4572edae31 Merged revisions 65200 via svnmerge from
18 years ago
Russell Bryant 83d0b0417c Merged revisions 64756 via svnmerge from
18 years ago
Joshua Colp e2871220e2 Merged revisions 61656 via svnmerge from
18 years ago
Russell Bryant be874b92d3 Remove unused instances of unnamed enums.
18 years ago
Joshua Colp 840f1e61e0 Merged revisions 60798 via svnmerge from
18 years ago
Joshua Colp 726928cb60 Properly hangup the original dialed channel, not the new channel that appeared from the forwarding. (issue #9161 reported by PhilSmith)
18 years ago
Joshua Colp fb9e48ca9e Merged revisions 55154 via svnmerge from
18 years ago
Joshua Colp 8e92c73a1d Merged revisions 54924 via svnmerge from
18 years ago
Joshua Colp 821c941976 Merged revisions 54884 via svnmerge from
18 years ago
Joshua Colp a11b56a8e5 Merged revisions 54623 via svnmerge from
18 years ago
Joshua Colp 68a66656e6 Merged revisions 54481 via svnmerge from
18 years ago
Joshua Colp 32cd307d6f Merged revisions 53749 via svnmerge from
18 years ago
Russell Bryant ce321f87e9 Merged revisions 53136 via svnmerge from
19 years ago
Joshua Colp a378353ecc Merged revisions 50298 via svnmerge from
19 years ago
Luigi Rizzo 83f52ed5e2 better name for struct dial_localuser.
19 years ago
Luigi Rizzo a755ec928a introduce a temporary variable for tmp->chan to shorten expressions.
19 years ago
Luigi Rizzo 9c81431c93 stop what i think is a memory leak in case Dial fails to
19 years ago
Luigi Rizzo 9d4531d636 move a large block related to privacy handling to a separate function.
19 years ago
Kevin P. Fleming 359a553961 Merged revisions 48193 via svnmerge from
19 years ago
Luigi Rizzo bbba4e5a20 better fix for the previous bug.
19 years ago
Luigi Rizzo 64a9c28c3b do not ast_hangup() on a NULL channel.
19 years ago
Joshua Colp af51be05a6 Merged revisions 47850 via svnmerge from
19 years ago
Jason Parker 938c4bdc29 Merged revisions 47782 via svnmerge from
19 years ago
Joshua Colp a8ef79fa6f Make local copy of arguments to parse. (issue #8362 reported by homesick)
19 years ago
Luigi Rizzo 8b3fe4556c move out another large block to a large function, and document
19 years ago
Luigi Rizzo a55ca0d6ec fix indentation of a block, and do minor simplifications at the end of
19 years ago
Luigi Rizzo 0f58d97707 complete previous commit.
19 years ago
Luigi Rizzo 01ec7d63d9 move another block into a function.
19 years ago
Luigi Rizzo 1385b6f047 move a large block into a separate function.
19 years ago
Luigi Rizzo ab4f699065 another small set of simplifications
19 years ago
Luigi Rizzo acf5e87b0f change HANDLE_CAUSE into a function.
19 years ago
Luigi Rizzo c3a6bbddb8 remove redundant checks
19 years ago
Luigi Rizzo 534da0ecfd start integrating the simplifications proposed in bug 0005860,
19 years ago
Steve Murphy 6d81c47801 These changes submitted by moy via bug 6992, to add a Dial 'End' event to asterisk. I include some changes to astman to cover other events that have been added.
19 years ago
Joshua Colp 1e3c5bc5ba Inherit the context and extension until the channel is answered
19 years ago
Matt O'Gorman ae8cc3e18b bug #8076 check option_debug before printing to debug channel.
19 years ago
Joshua Colp 3e4a081e1c Make callerid fields in Manager events more consistent. CallerIDNum for number and CallerIDName for name. (issue #7976 reported by suhler)
19 years ago
Joshua Colp 1c764935f2 SS7 marked the start of an open season for trunk again but here's something minor - abstract early bridging into the technology so that we don't always assume they use RTP and try it.
19 years ago
Matt O'Gorman d0a1a0033d similar patch for verbose vs debug with minor changes
19 years ago
Steve Murphy 7c9b6e1d29 These small app documentation changes to app_dial and app_read will hopefully avert any more 7544 type bug reports\!
19 years ago
Kevin P. Fleming 0a27d8bfe5 merge new_loader_completion branch, including (at least):
19 years ago
Russell Bryant 774bba093b Merged revisions 38928 via svnmerge from
19 years ago
Kevin P. Fleming 6d0742fc16 merge Russell's 'hold_handling' branch, finally implementing music-on-hold handling the way it was decided at AstriDevCon Europe 2006 (and the way people really want it to be)
19 years ago
Mark Spencer 4c90cf59b7 Support hold/unhold in Zap, update IAX2 parser to know about modern commands, forward hold/unhold in dial, add hold device state
19 years ago
BJ Weschke 2e8a142c85 Don't ast_request a channel structure twice when a call is being forwarded. (#7362 - twlison / vechers confirming fix)
19 years ago
Joshua Colp a23af6559c Merged revisions 33294 via svnmerge from
19 years ago
Olle Johansson 9f5aa13142 Rename ast_rtp_early_media to ast_rtp_early_bridge to avoid confusion.
19 years ago
Kevin P. Fleming 472c1ca282 simplify autoconfig include mechanism (make tholo happy he can use lint again :-)
19 years ago
Kevin P. Fleming 7f3cc8b886 cleanups for commit from issue #5657... set a cause code for a rejected forward request, and actually set tmp->chan to NULL when we reject the forward request
19 years ago
BJ Weschke 871f08ec07 Add an option to app_dial, 'i', to instruct the application ignore any requests from peers to forward calls elsewhere. #5657 (johnlange w/some minor mods)
19 years ago
Joshua Colp 91f9966be3 Merge branch for bug 6264 (Privacy option 2 returns dial-status ANSWER / option_priority_jumping not respected) (reported by jkoopmann and branch by murf)
19 years ago
BJ Weschke 5235890be4 This is part 2/2 of the patches for #7090. Adds one-step call parking to /trunk via builtin functions and 'k' 'K' application options added to app_dial. This also resolves #6340.
19 years ago
Joshua Colp d2da48b156 Inherit channel variables when call forwarding through chan_local (issue #7095 reported by raarts)
19 years ago
Russell Bryant 04ecb29d03 remove almost all of the checks of the result from ast_strdupa() or alloca().
19 years ago
Mark Spencer 9953f4f40e Make SIP early media work more efficiently without so many reinvites
19 years ago
BJ Weschke bdf2a05aa5 Merged revisions 24567 via svnmerge from
19 years ago
Jim Dixon a83297d85f Added "Operator Services" connection mode for Zap channels, and the 'O' option
19 years ago
Luigi Rizzo 965ff42bed more NULL "" equivalence in CID fields.
19 years ago
Luigi Rizzo b9f3e4e0f3 move a replicated block of code in the one place where it belongs.
19 years ago
Luigi Rizzo bd01d66909 merge two nested 'if' which are really a single block.
19 years ago
Luigi Rizzo 9476cb356e fix indentation of a large block
19 years ago
Luigi Rizzo 501c9e181c start sorting out the duplicated code in the privacy handler
19 years ago
Luigi Rizzo b3343aecdf merge two nested 'if' which are really a single block.
19 years ago
Luigi Rizzo 73f2d344fb more localization and variable removal
19 years ago
Luigi Rizzo c9f669e56d more localization of variables
19 years ago
Luigi Rizzo c6a8784e95 localize one more variable;
19 years ago
Luigi Rizzo 0f4a1bc9ac localize some variables
19 years ago
Luigi Rizzo 2bdcaa4849 extract a common condition.
19 years ago
Luigi Rizzo 25eb0525d9 fix indentation of some large blocks after previous changes
19 years ago
Luigi Rizzo 25c6ab22f9 more simplifications - use a local variable c instead of o->chan,
19 years ago
Luigi Rizzo acf0f038dc more simplifications
19 years ago
Luigi Rizzo 3aaaa41609 start cleaning up this code so we can split the 900 lines function
19 years ago
Luigi Rizzo e43bc6634d This rather large commit changes the way modules are loaded.
19 years ago
Tilghman Lesher 020305fb58 Merged revisions 19397 via svnmerge from
19 years ago
Kevin P. Fleming 77e998a20d Merged revisions 19301 via svnmerge from
19 years ago
BJ Weschke 0b438958df Minor cleanups and error handling for app_dial #6935 (casper)
19 years ago
Luigi Rizzo 7ba1b92a04 normalize code preparing for loader changes
19 years ago
Kevin P. Fleming cf15740eaf remove support for BYEXTENSION (which nobody even knows about anymore)
19 years ago
Kevin P. Fleming f10f427d49 since the module API is changing, it's a good time to const-ify the description() and key() return values
19 years ago
Olle Johansson 7089dc1341 Issue #6899 - remove OSP support code from chan_sip.c and app_dial.c
19 years ago
Luigi Rizzo 1fd898bd84 convert a couple of applications to the new module style
19 years ago
Luigi Rizzo 6c232811c0 as discussed with Mark a few weeks ago, the 'newstack' argument
19 years ago
Matt O'Gorman a5ece3388a Janitor work converting !ast_strlen_zero(a)?a:b
19 years ago
Russell Bryant fc9d3ba21b Merged revisions 13550 via svnmerge from
19 years ago
Russell Bryant 686b512e23 Merged revisions 12927 via svnmerge from
19 years ago
Russell Bryant a0d438fb6c remove the uses of the deprecated STANDARD_LOCAL_USER
19 years ago
Kevin P. Fleming a16ae226b6 use string fields for some stuff in ast_channel
20 years ago
Russell Bryant 32026d6f49 don't redefine the localuser struct for additional use specific to the module (issue #6216)
20 years ago
Kevin P. Fleming 210d4679ee Merged revisions 8608 via svnmerge from
20 years ago
Russell Bryant 4414f45393 on this pass, only remove duplicate log messages
20 years ago
Russell Bryant 9fa6eb5e07 revert my pass through the tree to remove checks of the result of ast_strdupa
20 years ago
Russell Bryant 7ad681adc8 remove lots of useless checks of the result of ast_strdupa
20 years ago
Kevin P. Fleming 5af944427f suppress compiler warning
20 years ago
Olle Johansson 95144f75a5 - Logging clean up
20 years ago
Matt O'Gorman 169eeb8599 Added forward context option from 5497
20 years ago
Russell Bryant 2eb7eecdd0 conversions to memory allocation wrappers (issue #6210)
20 years ago
Russell Bryant 384aefa772 Merged revisions 7957 via svnmerge from
20 years ago
Russell Bryant a725468381 update doxygen docs to specify authors
20 years ago
Mark Spencer 0d32a85be1 Major RTP fixes for using inbound SDP on outbound connection, get rid of
20 years ago
Kevin P. Fleming b7b2317d81 Merged revisions 7448-7449,7451,7453 via svnmerge from
20 years ago
Russell Bryant ec05153ac4 convert most of the option_*'s to a single ast_flags structure. Also, fix some
20 years ago
Kevin P. Fleming 2c65582b66 remove extraneous svn:executable properties
20 years ago
Mark Spencer aab82dc3d2 Record DIALEDTIME on incomplete calls, update description (bug #5862)
20 years ago
Russell Bryant 6801852c65 issue #5850
20 years ago
Russell Bryant 0702130ed1 fix a typo in the RetryDial description
20 years ago
Kevin P. Fleming 50ab28bd94 issue #5720
20 years ago
Russell Bryant 45c7589284 update the descriptions of a couple more apps
20 years ago
Russell Bryant 78d740290a more cleanups to application descriptions
20 years ago
Kevin P. Fleming 0ac4bbfdd9 issue #5602
20 years ago
Kevin P. Fleming f09c6bc78e application doc update
20 years ago
Russell Bryant 7d4a5abb1d Convert some built-in applications to use new args parsing macros.
20 years ago
Russell Bryant 31a804b97c issue #5605
20 years ago
Mark Spencer 535ed63c6f Dial janitor patch (bug #5613)
20 years ago
Kevin P. Fleming 2bebbca579 flags usage simplification
20 years ago
Kevin P. Fleming 426360e389 major update to arg/option parsing APIs and documentation
20 years ago
Kevin P. Fleming 8f0a6a7d4f uhh... oops
20 years ago
Kevin P. Fleming ce50837d70 upgrade Dial() app to use API-based argument/option parsing
20 years ago
Russell Bryant 5187de9ab6 remove unnecessary checks before calls to ast_strlen_zero
20 years ago
Russell Bryant 3453e3efa5 Doxygen documentation update from oej (issue #5505)
20 years ago
Russell Bryant b4e0cedf94 fix up help text (issue #5479)
20 years ago
Russell Bryant 4aa7912057 Massive cleanups to applications for LOCAL_USER handling and some other things.
20 years ago
Russell Bryant 29829640bf it's a good idea to unregister everything before calling STANDARD_HANGUP_LOCALUSERS
20 years ago
Kevin P. Fleming 57a8f5d82c ensure Dial() options are sorted in help output (issue #5386)
20 years ago
Kevin P. Fleming 7215e4179d add auto-monitor support (issue #5411)
20 years ago
Kevin P. Fleming 350aaac04b properly report hangupcause when ast_request() fails for the last (or only) target of a dial operation (issue #5394, different fix)
20 years ago
Kevin P. Fleming 5da915dcfd update MANY more files with proper copyright/license info (thanks Ian!)
20 years ago
Kevin P. Fleming 1e854ea773 remove useless buffer initializations (issue #5134)
20 years ago
Kevin P. Fleming e0f02b46f1 convert a bunch of apps to use ast_goto_if_exists() (issue #5138)
20 years ago
Mark Spencer 5d4d2fdfd4 Add SIP video fixes
20 years ago
Mark Spencer 3c6e6c9c96 Be sure not to leak frames in certain cases
20 years ago
Kevin P. Fleming 5cc0413c54 add a global option to disable priority jumping in applications (when they get updated), settable in extensions.conf
20 years ago
Kevin P. Fleming 0313d0b9c5 add privacy/screening functionality to app_dial (bug #752)
20 years ago
Mark Spencer 80f67ad1fa Pass along proceeding and progress even when overlap mode is not on
20 years ago
Matthew Fredrickson f6f9cac028 Change level of message in case of write on hung up channel (Bug #4651)
20 years ago
Russell Bryant 91ee5d5ddd more fun with ast_copy_string
20 years ago
Russell Bryant 52ef5c7d30 add function to convert a cause code to a string
20 years ago
Kevin P. Fleming c0b1e88e8a the last round of file version tags
20 years ago
Mark Spencer df349078da Fix dial to not seg when closing ')' is missing (bug #4410)
20 years ago
Russell Bryant 367fd1d3cf fix the one digit exit extension for RetryDial
20 years ago
Kevin P. Fleming 0858dad2ad return CHANUNAVAIL for unregistered peers, not CONGESTION (bug #4276)
20 years ago
Kevin P. Fleming 8634ef9e4a don't use '%i' at all, since we have no current use cases that need non base-10 parsing (bug #4110)
20 years ago
Kevin P. Fleming bced63033d make 'goto' APIs aware of auto-processing loops, so they know exactly when to set the requested priority or one priority lower
20 years ago
Kevin P. Fleming a1d24f740f help text cleanups (bug #4072, with mods)
20 years ago
Kevin P. Fleming 1f9ab2380a use double-quotes instead of angle-brackets for non-system include files (bug #4058)
20 years ago
Mark Spencer b5c7781d9f Add 'n' option to dial for "nojump" (bug #4034)
20 years ago
Russell Bryant 42da18ec5f just formatting
20 years ago
Mark Spencer 922d62c39d Add calling party DTMF (bug #3994)
20 years ago
Mark Spencer e87a53037e Forward text frames before answer (bug #3717)
20 years ago
Matthew Fredrickson b81f233e68 Merging in xylome's beaerer capabilty patch (bug 3547)
20 years ago
Mark Spencer 1719cd39d3 Add 'G' option to dial (bug #3786)
20 years ago
Mark Spencer 34e8ed636d Fix queue URL passing (bug #3543)
20 years ago
Mark Spencer 233e26b112 Fix SetVar (bug #3668) and g + transfer (#3650)
20 years ago
Mark Spencer 41453ebf74 Copy/paste errors (bug #3559, #3560)
21 years ago
Mark Spencer fa48657020 Fix typos in app_dial (bug #3536)
21 years ago
Mark Spencer 73b299843e Add "Dial" event to link callerid, src and destination channel (bug #3494)
21 years ago
Mark Spencer e95da4b9f7 Oops (first one of these in a while)
21 years ago
Mark Spencer a43b8ec753 REname 'p' option to 'o' (bug #3490)
21 years ago
Mark Spencer 026c03b527 Add new 'p' flag to Dial for preserve callerid (bug #3490)
21 years ago
Mark Spencer 6ed8f15260 Allow hints to have names (bug #3471)
21 years ago
Mark Spencer 87cf6b3ec2 Fix 'g' flag (bug #3465)
21 years ago
Mark Spencer 1f7c871993 Set dialed peer number properly when ringing multiple channels (bug #3437)
21 years ago
Russell Bryant 0c30452423 update copyright headers for 2005
21 years ago
Mark Spencer 8a1906619f Fix typos (bug #3381)
21 years ago
Mark Spencer e983edd221 Fix small app_dial issue (bug #3368)
21 years ago
Mark Spencer cd2ef5b548 Merge anthm's RetryDial with changes (bug #3313)
21 years ago
Mark Spencer 840f035827 Merge hold patch (bug #1840)
21 years ago
Mark Spencer b6b393c1b9 Give outbound channels callerid of their extension *after* calling (bug #2489)
21 years ago
Anthony Minessale II b730f9435c fix bug 3329 (monitor flags)
21 years ago
Mark Spencer 92eb0c2018 More flagification, courtesy drumkilla (bug #3280)
21 years ago
Mark Spencer 51cab9e7cc Make queue support channel variable inheritance (bug #3274)
21 years ago
Mark Spencer 51880b7ddc Fix typo for blind transfer (bug #3259)
21 years ago
Mark Spencer 95e75f4354 More flag on dial tweaks (bug #3254, take two)
21 years ago
Mark Spencer 8e3722ceee More flagification (bug #3254)
21 years ago
Mark Spencer 526622d6e0 Merge Tony's attended # transfer with changes (bug #3241)
21 years ago
Mark Spencer 7568d9a4ef Merge OSP updates from matt nicholson (with changes)
21 years ago
Mark Spencer e7d4ae8efa Make features configurable and easier to implement
21 years ago
Mark Spencer d021bc7327 Allow moh class to be specified (bug #3199)
21 years ago
Mark Spencer 526fc0afe9 Set normal clearing for answered calls (bug #3165)
21 years ago
Mark Spencer d6471bec31 Merge Olle's comment patch (bug #3097)
21 years ago
Mark Spencer cadb8d010b Merge russell's flag macro patch (with slight mods) (bug #3046)
21 years ago
Mark Spencer 0e5cec5e09 fix DIALSTATUS issue (bug #2989)
21 years ago
Mark Spencer 4429bce838 Add missing free's in rare circumstances (bug #2985)
21 years ago
Mark Spencer 3050320746 Implement max # of forwards (bug #2942, different strategy)
21 years ago
Mark Spencer d456e6ba54 Little dial typo fix and make WaitExten continue if nothing entered and there is a step n+1
21 years ago
Mark Spencer d7da317979 Add improved macro functionality (bug #2905)
21 years ago
Mark Spencer 0e35816160 Little fixups for busy
21 years ago
Mark Spencer 7f445141f2 Oops
21 years ago
Mark Spencer a50dd88d24 Display cause code for failure to get channel
21 years ago
Mark Spencer 36f1b37542 Add OUTBOUND_GROUP support (bug #2530)
21 years ago
Mark Spencer 94994626b6 Pass through flash hook
21 years ago
Mark Spencer 2f5cd4a95c Fix small typo
21 years ago
Mark Spencer 668001f9c8 Make channel variables inheritable by _ (bug #928)
21 years ago
Mark Spencer b8885530f4 Pass redirecting number on PRI calls (bug #2763)
21 years ago
Mark Spencer 6b9d24b54a Oops
21 years ago
Mark Spencer 8a13712e45 Pass concept of status back, permit "leaveempty" to work with static agents who are not loggedon (bug #2719)
21 years ago
Mark Spencer c608e97005 Do not send progress when "ringing" only flag is set (bug #2553)
21 years ago
Mark Spencer 8dd03ff284 Move populate TNS/Presentation/TON from calling channel
21 years ago
Mark Spencer 04fc29c8b2 Huge callerid rework (might break H.323, others)
21 years ago
Mark Spencer 78531a0f32 Handle arbitrary long dial sequences (like what we need at Astricon)
21 years ago
Matthew Fredrickson 8a12240f73 macro support in the dial command
21 years ago
Mark Spencer cab4557006 When detecting a hairpin, redirect to the appropriate local extension (bug #1974)
21 years ago
Mark Spencer bf70a01da6 Merge alternate hangup and meetme patches from Matt N.
21 years ago
Mark Spencer bb75fcc4db Copy account code and flags form incoming to outgoing channel for purposes of local stuff
21 years ago
Mark Spencer b5ad8c24be Make '*' count as cancel (bug #2098)
21 years ago
Mark Spencer 24a5704798 Update dial documentation (bug #2096)
21 years ago
Mark Spencer 569b95352a rename "parking" to "features" in preparation for some more (possibly post 1.0) feature additions
21 years ago
Mark Spencer 4d32c46126 Merge rgagnon's pedantic string checks (apps a-m, bug #2035)
21 years ago
Mark Spencer f78179c374 Publish DIALEDTIME and ANSWEREDTIME in case people want to know them
21 years ago
Mark Spencer dd293ed6fe First pass at properly handling account codes in forwarding
21 years ago
Mark Spencer 851fce9568 Make ringing clearer
21 years ago
Mark Spencer 432bb121f3 Cleanups to the ordering of events in dial, don't freak out on the wrong codec
21 years ago
Mark Spencer 1d473f25dd Add outgoing OSP support (SIP only at this point)
21 years ago
Mark Spencer 2187465cae Set ${DIALSTATUS} from app_dial, make zap return BUSY on a phone that is busy, update macro-stdexten to demo
21 years ago
James Golovich f5c18f62a1 Remove pthread.h from source. We should be using asterisk/lock.h everywhere instead (except in asterisk/lock.h).
21 years ago
Mark Spencer 5546e32355 Merge major BSD mutex and symbol conflict patches (bug #1816) (link patch still pending)
21 years ago