1 2005-11-06 Russell Bryant <russell@digium.com>
3 * many files: alphabetize options in applicaiton descriptions
4 * channels/chan_iax2.c: Use an enum to define iax peer/user flags as well as the pvt structure state. Use the ast_flags macros for checking or setting the state.
5 * sounds.txt: Add missing words from the description of the vm-opts prompt
6 * apps/app_externalivr.c: Add a space that fixes building on older versions of gcc
7 * many files: Add doxygen updates to categorize modules into groups. Convert a lot of comments over to doxygen style. Add some text giving a basic overview of channels.
8 * many files: Update applications to add an exit status variable, make priority jumping optional, and use new args parsing macros
9 * pbx.c cdr.c res/res_features.c apps/app_dial.c include/asterisk/cdr.h: Convert some built-in applications to use new args parsing macros. Change ast_cdr_reset to take a pointer to an ast_flags structure instead of an integer for flags.
10 * channels/chan_agent.c: Don't loop forever on an invalid options string
12 2005-11-05 Kevin P. Fleming <kpfleming@digium.com>
14 * Makefile: don't rebuild asterisk/build.h unless the asterisk binary is going to be relinked for some other reason (stops spurious recompile/link every time 'make' is issued); clean up variable substitutions to use consistent syntax
15 * asterisk.c: don't include asterisk/build.h (it's unnecessary)
16 * cli.c: don't include asterisk/build.h, use extern references to buildinfo.c
17 * buildinfo.c: new file to hold version info strings
19 2005-11-04 Kevin P. Fleming <kpfleming@digium.com>
21 * apps/app_mixmonitor.c (mixmonitor_exec): correct app name in an error message
23 2005-11-04 Russell Bryant <russell@digium.com>
25 * channels/chan_iax2.c: Create a function that stores a peer's status in a given buffer. Use this function in "iax2 show peers" and "iax2 show peer <peername>". Also, add the peer's status as an option to the IAXPEER dialplan function.
27 2005-11-04 Kevin P. Fleming <kpfleming@digium.com>
29 * include/asterisk/compiler.h: don't try to use always_inline on old compilers
31 2005-11-03 Russell Bryant <russell@digium.com>
33 * res/res_agi.c: initialize buffer for result so that the contents are always valid in the response to GET FULL VARIABLE
35 2005-11-03 Kevin P. Fleming <kpfleming@digium.com>
37 * doc/README.variables: document DYNAMIC_FEATURES
39 * res/res_features.c (ast_bridge_call): remove unused variables
41 * apps/app_dial.c (dial_exec_full): simplify options and flag usage
43 * include/asterisk/app.h: re-work application arg/option parsing APIs for consistent naming, add doxygen docs for option API
44 * many files: update to new APIs
46 2005-11-02 Kevin P. Fleming <kpfleming@digium.com>
48 * apps/app_dial.c (dial_exec_full): convert to use API calls for argument/option parsing
50 * include/asterisk/channel.h: add doxygen docs for silence generator APIs
52 * channel.c (ast_channel_bridge): simplify native-bridge return logic, remove 'unsuccessful' message since it causes too many questions :-)
54 2005-11-01 Kevin P. Fleming <kpfleming@digium.com>
56 * stdtime/localtime.c: fix build failure on uClibc systems (issue #5558)
59 * many files: make chan_misdn actually build (issue #5566)
61 * many files: more Cygwin build system support (issue #4678)
63 * apps/app_parkandannounce.c (parkandannounce_exec): supply parent channel to ast_request_and_dial so channel variables can be inherited (issue #5564)
64 * include/asterisk/channel.h: add parent_channel field
65 * channel.c (__ast_request_and_dial): use parent_channel field to inherit variables into new channel
67 * apps/app_cut.c (cut_internal): use ast_separate_app_args() instead of open code (issue #5560)
69 * apps/app_mixmonitor.c (launch_monitor_thread): ast_strlen_zero can handle NULL input (issue #5561)
70 (mixmonitor_exec): same
72 * res/res_features.c (ast_feature_request_and_dial): ensure that channel variables are inherited from the channel placing the call (issue #5499)
74 * utils.c (getloadavg): change to using _BSD_SOURCE as the indicator for whether this function is present or not (issue #5549)
76 * include/asterisk/utils.h (ast_slinear_saturated_add): force to be inlined whenever possible
77 (ast_slinear_saturated_multiply): same
78 (ast_slinear_saturated_divide): same
80 * include/asterisk/strings.h (ast_strlen_zero): force to be inlined whenever possible
81 * include/asterisk/compiler.h (force_inline): add macro to force inlining of functions
83 * app.c (ast_play_and_record): use ast_silence_generator during recording if requested
84 * asterisk.c: add global option to enable silence-during-record (issue #5135)
85 * channel.c (silence_generator_alloc): new
86 (silence_generator_release): new
87 (silence_generator_generate): new
88 (ast_channel_start_silence_generator): new API call to start generating silence on a channel
89 (ast_channel_stop_silence_generator): parallel call to stop silence generation
90 * apps/app_record.c (record_exec): use ast_silence_generator during recording if requested
92 2005-11-01 Kevin P. Fleming <kpfleming@digium.com>
94 * Asterisk 1.2.0-beta2 released.