https://origsvn.digium.com/svn/asterisk/branches/1.8
........
r321812 | rmudgett | 2011-06-03 14:55:21 -0500 (Fri, 03 Jun 2011) | 1 line
Correct IAX2 and SIP event subscription description string.
........
r321813 | rmudgett | 2011-06-03 14:56:09 -0500 (Fri, 03 Jun 2011) | 1 line
Constify subscription description parameter string.
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@321814
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
{
if (!network_change_event_subscription) {
network_change_event_subscription = ast_event_subscribe(AST_EVENT_NETWORK_CHANGE,
- network_change_event_cb,
- "SIP Network Change ",
- NULL,
- AST_EVENT_IE_END);
+ network_change_event_cb, "IAX2 Network Change", NULL, AST_EVENT_IE_END);
}
}
{
if (!network_change_event_subscription) {
network_change_event_subscription = ast_event_subscribe(AST_EVENT_NETWORK_CHANGE,
- network_change_event_cb,
- "SIP Network Change ",
- NULL, AST_EVENT_IE_END);
+ network_change_event_cb, "SIP Network Change", NULL, AST_EVENT_IE_END);
}
}
* \note A NULL description will cause this function to crash, so watch out!
*/
struct ast_event_sub *ast_event_subscribe(enum ast_event_type event_type,
- ast_event_cb_t cb, char *description, void *userdata, ...);
+ ast_event_cb_t cb, const char *description, void *userdata, ...);
/*!
* \brief Allocate a subscription, but do not activate it
* The event API already knows which events can be cached and how to cache them.
*
* \retval 0 success
- * \retval non-zero failure. If failure is returned, the event must be destroyed
- * by the caller of this function.
+ * \retval non-zero failure.
*/
int ast_event_queue_and_cache(struct ast_event *event);
}
struct ast_event_sub *ast_event_subscribe(enum ast_event_type type, ast_event_cb_t cb,
- char *description, void *userdata, ...)
+ const char *description, void *userdata, ...)
{
va_list ap;
enum ast_event_ie_type ie_type;