summaryrefslogtreecommitdiff
path: root/include/asterisk/config.h
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2005-01-16 06:01:50 +0000
committerMark Spencer <markster@digium.com>2005-01-16 06:01:50 +0000
commitb0772febde545b5e68361503df2732ae29d683db (patch)
tree014581908ebd1dccefb9a9070808142cbf905468 /include/asterisk/config.h
parentfd3845293b711c2e77e37f6b0922591cfc45a6a0 (diff)
config restructure, sip peer completion (bug #3352, #3327)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4808 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/config.h')
-rwxr-xr-xinclude/asterisk/config.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/asterisk/config.h b/include/asterisk/config.h
index 2d820b3a1..4e7569c26 100755
--- a/include/asterisk/config.h
+++ b/include/asterisk/config.h
@@ -96,6 +96,13 @@ int ast_true(const char *val);
*/
int ast_false(const char *val);
+/*! Retrieve a category if it exists
+ * \param config which config to use
+ * \param category_name name of the category you're looking for
+ * This will search through the categories within a given config file and search for a match. The passed category_name can be a regular string.
+ * Returns pointer to category if found, NULL if not. */
+struct ast_category *ast_category_get(const struct ast_config *config, const char *category_name);
+
/*! Check for category duplicates */
/*!
* \param config which config to use