aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2006-06-04- Typo in chan_sip (: missing)oej2-7/+4
- Only print formats once in dumpchan() git-svn-id: http://svn.digium.com/svn/asterisk/trunk@32017 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-04Add formats in text form to dumpchan()oej1-5/+9
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@32003 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-04Doxygen improvementsoej2-248/+187
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31979 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-04Doxygen formatting fixesoej1-8/+6
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31977 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-04Use a dynamically sized array to store the list of files for moh "files" moderussell1-34/+61
- Instead of always allocating 64KB of memory for every MOH class, this has been reduced to only a single pointer per class, with more memory only allocatted when using "files" mode, as needed - Instead of imposing a length limit on the full filename, including full path, of 127 characters, use PATH_MAX, the maximum length that the system can handle - There is no longer a limit on the number of files than can be used for a single MOH class using "files" mode git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31953 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-04Merged revisions 31921 via svnmerge from kpfleming1-1/+1
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r31921 | kpfleming | 2006-06-03 22:43:35 -0500 (Sat, 03 Jun 2006) | 2 lines return bridge exit logic to what it was before i broke it :-( ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31922 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-04add a bit of comment on what build_route does,rizzo1-9/+8
plus minor code simplification. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31895 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-03remove some duplicated code;rizzo1-13/+15
fix indentation on one line; mark XXX some unreachable code; mark XXX another place where we could reduce the nesting depth. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31872 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-03small simplification in assignments, and fix a typo in a comment.rizzo1-9/+3
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31871 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-03mark XXX some places where there is a return right beforerizzo1-0/+6
a large "else" block, which is suitable for a reduction of the nesting depth. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31870 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-03fix indentation of a blockrizzo1-16/+16
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31869 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-03some code simplifications using S_OR() to remove some if blocksrizzo1-30/+16
and duplicate code. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31868 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-03use ast_skip_blanks() where appropriate, and use standardrizzo1-15/+7
C jargoon *foo++ = '\0'; instead of two separate statements. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31861 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-03mark XXX a buggy section of code and implement a probablerizzo1-2/+23
replacement (leave the original in case my code does not do what the function was meant to do). oej, please check this... git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31843 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-03simplify logic in a small block of coderizzo1-7/+3
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31842 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-03mark XXX a bug in the code. oej/kevin, any idea what you wantrizzo1-0/+4
to use here ? git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31841 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-03 Make sure DEBUG is really cranked up before we decide to flood the logs ↵bweschke1-1/+1
with messages about Internal timing when a channel has to make a decision about generating internal timing (eg - MOH) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31840 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-03remove duplicate coderizzo1-3/+0
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31814 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-03Replace '\"' with '"'.rizzo1-3/+3
The escape is unnecessary, and makes a bad example to people reading the code. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31813 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-03when using moh files mode, don't look for a file past the number of filesrussell1-0/+2
that have been loaded, or worse, past the size of the files array git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31776 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-03Merged revisions 31738 via svnmerge from bweschke1-1/+2
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r31738 | bweschke | 2006-06-03 10:48:13 -0400 (Sat, 03 Jun 2006) | 3 lines Fix doxygen comment about AST_LIST_HEAD_INIT_NOLOCK ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31739 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-03Adding John Martin to CREDITS for his video workoej1-0/+2
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31715 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-03Two missed casestilghman1-2/+2
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31691 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-03Ooops, those characters weren't really periods (credit to John Olson)tilghman1-4/+4
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31690 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-02add credits for cdr_radiusrussell1-0/+3
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31664 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-02Adding credits for SIP transfer workoej1-0/+1
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31636 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-02add a comment where some memory usage optimization needs to be donerussell1-0/+1
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31613 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01use strcpy instead of snprintf in a couple placesrussell1-2/+2
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31586 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01Merged revisions 31555 via svnmerge from kpfleming1-12/+2
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r31555 | kpfleming | 2006-06-01 16:46:50 -0500 (Thu, 01 Jun 2006) | 2 lines remove pointless forcing of the channel into SLINEAR mode; the write format will be set later based on the file that is chosen to be played to the channel ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31556 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01Merged revisions 31520 via svnmerge from kpfleming2-2/+11
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r31520 | kpfleming | 2006-06-01 15:27:50 -0500 (Thu, 01 Jun 2006) | 2 lines handle Zap transfers behind chan_agent properly so the agent doesn't get stuck waiting for the call to hang up ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31522 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01Formatting fixesoej1-20/+25
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31497 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01Doxygen reformattingoej1-3/+3
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31496 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01- Formattingoej1-7/+10
- Add some comments git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31495 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01Minor change to DEBUG and WARNING messagesoej1-7/+7
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31494 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01changes for base64 to work in multiline instancesmogorman2-35/+35
as well as being more efficient, patch from jcollie's base64 branch git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31492 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01more minor fixes thanks Julian on pointing out mogorman1-3/+3
potential problems git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31469 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01allow menuselect to display dependencies and conflicts for modulesrussell3-20/+39
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31443 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01Issue #7103 take two. Thanks Mikael!oej1-2/+3
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31414 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01- add the ability to configure forced jitterbuffers on h323, jingle,russell14-62/+150
and mgcp channels - remove the jitterbuffer configuration from the pvt structures in the sip, zap, and skinny channel drivers, as copying the same global configuration into each pvt structure has no benefit. - update and fix some typos in jitterbuffer related documentation (issue #7257, north, with additional updates and modifications) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31413 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01my last changes to the jitterbuffer files need a forced make cleanrussell1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31412 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01the interface needs to be changed as well..crichter1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31411 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01unified the PH_CONTROL Interface for the mISDN_dsp interface to intcrichter1-9/+9
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31409 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01This is what I get for coding while tired.. sorry ;/north1-2/+1
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31385 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01fix an incorrect comment (issue #7259, tardieu)russell1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31360 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01make a global variable static and remove an unused global variablerussell1-2/+2
(issue #7258, tardieu) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31359 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01- add slav, zoa, and royk to the CREDITS for the generic jitterbufferrussell5-171/+203
- change references to the "scx" jitterbuffer to be called "fixed" and change references to the "stevek" jitterbuffer to be called "adaptive", instead git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31356 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01added bearer capability reject support. we send release instead of ↵crichter8-62/+155
disconnect in case we have no real channel yet. added support for Restarting channels added support for sending complete decoding. changed some log levels. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31324 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01Merged revisions 31321 via svnmerge from kpfleming1-1/+0
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r31321 | kpfleming | 2006-06-01 07:41:47 -0500 (Thu, 01 Jun 2006) | 2 lines remove a sample entry that never should have been added (code to support it was not merged) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31322 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01solves bug where reload deleted things it shouldnt havemogorman1-2/+9
and adds check into jabberstatus so it cant segfault. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31298 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-01adds statusmessage customization from Julian Lyndon-Smithmogorman3-13/+20
and fixes bug with pruneregister git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31275 f38db490-d61c-443f-a65b-d21fe96a405b