/usr/include/asterisk/res_mwi_external.h is in asterisk-dev 1:13.18.3~dfsg-1ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 | /*
* Asterisk -- An open source telephony toolkit.
*
* Copyright (C) 2013, Digium, Inc.
*
* Richard Mudgett <rmudgett@digium.com>
*
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
* This program is free software, distributed under the terms of
* the GNU General Public License Version 2. See the LICENSE file
* at the top of the source tree.
*/
/*!
* \file
* \brief Core external MWI support.
*
* \author Richard Mudgett <rmudgett@digium.com>
*
* See Also:
* \arg \ref AstCREDITS
*/
#ifndef _ASTERISK_RES_MWI_EXTERNAL_H
#define _ASTERISK_RES_MWI_EXTERNAL_H
#if defined(__cplusplus) || defined(c_plusplus)
extern "C"
{
#endif
/* ------------------------------------------------------------------- */
/*!
* \brief Increase the external MWI resource module reference count.
* \since 12.1.0
*
* \return Nothing
*/
void ast_mwi_external_ref(void);
/*!
* \brief Decrease the external MWI resource module reference count.
* \since 12.1.0
*
* \return Nothing
*/
void ast_mwi_external_unref(void);
struct ast_mwi_mailbox_object;
/*! \brief Convienience unref function for mailbox object. */
#define ast_mwi_mailbox_unref(mailbox) ao2_ref((struct ast_mwi_mailbox_object *) mailbox, -1)
/*!
* \brief Allocate an external MWI object.
* \since 12.1.0
*
* \param mailbox_id Name of mailbox.
*
* \retval object on success. The object is an ao2 object.
* \retval NULL on error.
*/
struct ast_mwi_mailbox_object *ast_mwi_mailbox_alloc(const char *mailbox_id);
/*!
* \brief Get mailbox id.
* \since 12.1.0
*
* \param mailbox Object to get id.
*
* \return mailbox_id of the object.
*
* \note This should never return NULL unless there is a bug in sorcery.
*/
const char *ast_mwi_mailbox_get_id(const struct ast_mwi_mailbox_object *mailbox);
/*!
* \brief Get the number of new messages.
* \since 12.1.0
*
* \param mailbox Object to get number of new messages.
*
* \return Number of new messages.
*/
unsigned int ast_mwi_mailbox_get_msgs_new(const struct ast_mwi_mailbox_object *mailbox);
/*!
* \brief Get the number of old messages.
* \since 12.1.0
*
* \param mailbox Object to get number of old messages.
*
* \return Number of old messages.
*/
unsigned int ast_mwi_mailbox_get_msgs_old(const struct ast_mwi_mailbox_object *mailbox);
/*!
* \brief Copy the external MWI counts object.
* \since 12.1.0
*
* \param mailbox What to copy.
*
* \retval copy on success. The object is an ao2 object.
* \retval NULL on error.
*/
struct ast_mwi_mailbox_object *ast_mwi_mailbox_copy(const struct ast_mwi_mailbox_object *mailbox);
/*!
* \brief Set the number of new messages.
* \since 12.1.0
*
* \param mailbox Object to set number of new messages.
* \param num_msgs Number of messages to set.
*
* \return Nothing
*/
void ast_mwi_mailbox_set_msgs_new(struct ast_mwi_mailbox_object *mailbox, unsigned int num_msgs);
/*!
* \brief Set the number of old messages.
* \since 12.1.0
*
* \param mailbox Object to set number of old messages.
* \param num_msgs Number of messages to set.
*
* \return Nothing
*/
void ast_mwi_mailbox_set_msgs_old(struct ast_mwi_mailbox_object *mailbox, unsigned int num_msgs);
/*!
* \brief Update the external MWI counts with the given object.
* \since 12.1.0
*
* \param mailbox What to update.
*
* \retval 0 on success.
* \retval -1 on error.
*/
int ast_mwi_mailbox_update(struct ast_mwi_mailbox_object *mailbox);
/*!
* \brief Delete matching external MWI object.
* \since 12.1.0
*
* \param mailbox_id Name of mailbox to delete.
*
* \retval 0 on success.
* \retval -1 on error.
*/
int ast_mwi_mailbox_delete(const char *mailbox_id);
/*!
* \brief Delete all external MWI objects selected by the regular expression.
* \since 12.1.0
*
* \param regex Regular expression in extended syntax. (NULL is same as "")
*
* \note The provided regex is treated as extended case sensitive.
*
* \retval 0 on success.
* \retval -1 on error.
*/
int ast_mwi_mailbox_delete_by_regex(const char *regex);
/*!
* \brief Delete all external MWI objects.
* \since 12.1.0
*
* \retval 0 on success.
* \retval -1 on error.
*/
int ast_mwi_mailbox_delete_all(void);
/*!
* \brief Get matching external MWI object.
* \since 12.1.0
*
* \param mailbox_id Name of mailbox to retrieve.
*
* \retval requested mailbox on success. The object is an ao2 object.
* \retval NULL on error or no mailbox.
*
* \note The object must be treated as read-only.
*/
const struct ast_mwi_mailbox_object *ast_mwi_mailbox_get(const char *mailbox_id);
/*!
* \brief Get all external MWI objects selected by the regular expression.
* \since 12.1.0
*
* \param regex Regular expression in extended syntax. (NULL is same as "")
*
* \note The provided regex is treated as extended case sensitive.
*
* \retval container of struct ast_mwi_mailbox_object on success.
* \retval NULL on error.
*
* \note The objects in the container must be treated as read-only.
*/
struct ao2_container *ast_mwi_mailbox_get_by_regex(const char *regex);
/*!
* \brief Get all external MWI objects.
* \since 12.1.0
*
* \retval container of struct ast_mwi_mailbox_object on success.
* \retval NULL on error.
*
* \note The objects in the container must be treated as read-only.
*/
struct ao2_container *ast_mwi_mailbox_get_all(void);
/* ------------------------------------------------------------------- */
#if defined(__cplusplus) || defined(c_plusplus)
}
#endif
#endif /* _ASTERISK_RES_MWI_EXTERNAL_H */
|