You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asterisk/include/asterisk
Tilghman Lesher 0e6140c564
Use a 32k file buffer on recordings, which increases the efficiency of file recording.
18 years ago
..
_private.h start the process of changing HTTP request dispatching to do it based on *both* URI and method, so that POST support can move into a module; move http.c's private function prototypes into _private.h 18 years ago
abstract_jb.h move the declaration of struct ast_channel ast_frame and ast_module 18 years ago
acl.h start using asterisk/network.h for network related headers. 18 years ago
adsi.h A lot of doxygen updates 18 years ago
ael_structs.h Merged revisions 111341 via svnmerge from 18 years ago
aes.h Fix a regression in Asterisk 1.6 related to the use of AES encryption. 18 years ago
aes_internal.h
agi.h A lot of doxygen updates 18 years ago
alaw.h A lot of doxygen updates 18 years ago
app.h Asterisk, when parking can drop rights a caller when a parking timeout occurs. Also, when doing built-in attended transfers, sometimes incorrectly passes rights from the transferrer to the transferee. This patch tries to fixes the parking issue and lays some groundwork for later fixing the transfer issue. 18 years ago
ast_expr.h A lot of doxygen updates 18 years ago
ast_version.h Rename version.h to ast_version.h. Next, I will be re-adding version.h as an 18 years ago
astdb.h A lot of doxygen updates 18 years ago
astmm.h Add format attribute to printf-style functions in astmm.h 18 years ago
astobj.h Go through and fix a bunch of places where character strings were being interpreted as format strings. Most of these changes are solely to make compiling with -Wsecurity and -Wformat=2 happy, and were not 18 years ago
astobj2.h A lot of doxygen updates 18 years ago
astosp.h
audiohook.h Merge over ast_audiohook_volume branch. This adds API calls for use by developers to adjust the volume on a channel. 18 years ago
autoconfig.h.in ensure that dependencies on AST_C_DEFINE_CHECK symbols work properly 18 years ago
callerid.h A lot of doxygen updates 18 years ago
causes.h A lot of doxygen updates 18 years ago
cdr.h Merged revisions 107016 via svnmerge from 18 years ago
channel.h Merged revisions 108583 via svnmerge from 18 years ago
chanvars.h
cli.h Remove "old"-style CLI handler, since nothing uses it anymore. 18 years ago
compat.h Merged revisions 90753 via svnmerge from 18 years ago
compiler.h
config.h Add the "config reload <conffile>" command, which allows you to tell Asterisk 18 years ago
crypto.h Merge a bunch of doxygen updates to header files. This includes changes to 19 years ago
devicestate.h A lot of doxygen updates 18 years ago
dial.h Add an API call that steals the answered channel so that a destruction of the dialing structure does not hang it up. 18 years ago
dlfcn-compat.h
dns.h
dnsmgr.h This adds DNS SRV record support to DNS manager. If there is a SRV record for a given domain, the hostname and port listed in the SRV record will be used. If no SRV record exists or a SRV lookup is not attempted, the DNS lookup on the specified domain will be performed as normal. Chan_sip has been modified to take advantage of the new SRV support. 18 years ago
doxyref.h Doxygen updates, formatting. 18 years ago
dsp.h Large cleanup of DSP code 18 years ago
dundi.h 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. 19 years ago
endian.h provide definitions for __LITTLE_ENDIAN and __BIG_ENDIAN if not present. 18 years ago
enum.h Merge a bunch of doxygen updates to header files. This includes changes to 19 years ago
event.h The documentation page has to be in its own comment block to work, apparently. 18 years ago
event_defs.h Add API calls for iterating through an event. This should allow events to have multiple information elements (while there was nothing preventing it before you could not actually access any except the first one). 18 years ago
extconf.h Merged revisions 109309 via svnmerge from 18 years ago
features.h Move code from res_features into (new file) main/features.c 18 years ago
file.h Typo fixed earlier, that wasn't a typo after all. 18 years ago
frame.h Merged revisions 106235 via svnmerge from 18 years ago
fskmodem.h Change the fsk filter used in CID and TDD decode to an integer based implementation 18 years ago
global_datastores.h Asterisk, when parking can drop rights a caller when a parking timeout occurs. Also, when doing built-in attended transfers, sometimes incorrectly passes rights from the transferrer to the transferee. This patch tries to fixes the parking issue and lays some groundwork for later fixing the transfer issue. 18 years ago
hashtab.h A lot of doxygen updates 18 years ago
http.h Re-add HTTP post support by moving to res_http_post.c 18 years ago
image.h formatting cleanup on the header, 18 years ago
indications.h
inline_api.h
io.h A lot of doxygen updates 18 years ago
jabber.h Use an ast_flags structure in aji_client and aji_buddy rather than an 18 years ago
jingle.h Comply with latest XEP-0166, XEP-0167, XEP-0176. 18 years ago
libresample.h and now just to keep the libresample party going... if the functions from libresample are going to be in the main Asterisk binary, it makes sense for the header that defines them to be available without any special CFLAGS and to out-of-tree modules building against /usr/include/asterisk 18 years ago
linkedlists.h Simplify new macro, simplify configfile logic, now that list is sorted 18 years ago
localtime.h Added a new module, res_phoneprov, which allows auto-provisioning of phones 18 years ago
lock.h Merged revisions 105116 via svnmerge from 18 years ago
logger.h Changed VERBOSITY_LEVEL to VERBOSITY_ATLEAST to be more accurate. 18 years ago
manager.h Move Originate to a separate privilege and require the additional System privilege to call out to a subshell. 18 years ago
md5.h Start untangling header inclusion in a way that does not affect 18 years ago
mod_format.h Use a 32k file buffer on recordings, which increases the efficiency of file recording. 18 years ago
module.h Bring Voicetronix driver up to date with current drivers 18 years ago
monitor.h
musiconhold.h Merge a bunch of doxygen updates to header files. This includes changes to 19 years ago
netsock.h Remove astobj.h from some places where it wasn't needed 18 years ago
network.h some platforms (e.g. FreeBSD4) need netinet/in.h to be included 18 years ago
options.h Merged revisions 110628 via svnmerge from 18 years ago
paths.h modify http://svn.digium.com/view/asterisk?view=rev&rev=93603 18 years ago
pbx.h Make some notes about common usage of pbx_builtin_getvar_helper() that is not 18 years ago
plc.h Start untangling header inclusion in a way that does not affect 18 years ago
poll-compat.h
privacy.h
pval.h Merged revisions 111341 via svnmerge from 18 years ago
res_odbc.h Merged revisions 99341 via svnmerge from 18 years ago
rtp.h Merged revisions 105674 via svnmerge from 18 years ago
say.h Merge a bunch of doxygen updates to header files. This includes changes to 19 years ago
sched.h Merged revisions 108227 via svnmerge from 18 years ago
sha1.h Start untangling header inclusion in a way that does not affect 18 years ago
slinfactory.h This adds DNS SRV record support to DNS manager. If there is a SRV record for a given domain, the hostname and port listed in the SRV record will be used. If no SRV record exists or a SRV lookup is not attempted, the DNS lookup on the specified domain will be performed as normal. Chan_sip has been modified to take advantage of the new SRV support. 18 years ago
smdi.h Merged revisions 104119 via svnmerge from 18 years ago
speech.h Merged revisions 79334 via svnmerge from 18 years ago
srv.h Merged revisions 88862 via svnmerge from 18 years ago
stringfields.h remove redundant #include "asterisk/compat.h", 18 years ago
strings.h Temporary revert of 111662. It's causing lots of trouble and appears to not be 18 years ago
tcptls.h Rename ast_tcptls_server_instance to session_instance, since this pertains to 18 years ago
tdd.h Additional TDD changes (preparing for SIP changes - adding TDD support to SIP) 18 years ago
term.h Doxygen updates, formatting. 18 years ago
threadstorage.h minor cleanups 18 years ago
time.h Fix up some doxygen issues. 18 years ago
transcap.h Doxygen updates, formatting. 18 years ago
translate.h Merged revisions 99081 via svnmerge from 18 years ago
udptl.h Add the "config reload <conffile>" command, which allows you to tell Asterisk 18 years ago
ulaw.h Doxygen updates, formatting. 18 years ago
unaligned.h * In unaligned.h, remove some unnecessary casts and mark the arg of the 18 years ago
utils.h Go through and fix a bunch of places where character strings were being interpreted as format strings. Most of these changes are solely to make compiling with -Wsecurity and -Wformat=2 happy, and were not 18 years ago
zapata.h Doxygen updates, formatting. 18 years ago