mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-13 15:50:59 +00:00
MODAPP-264 prevent multiple bindings of the same event_hooks to make code simpler in mod_limit
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13113 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
eafbfb388c
commit
dd61d20987
@ -183,12 +183,12 @@ extern switch_io_event_hooks_t switch_core_session_get_event_hooks(switch_core_s
|
||||
assert(_NAME != NULL); \
|
||||
for (ptr = session->event_hooks._NAME; ptr && ptr->next; ptr = ptr->next) \
|
||||
if (ptr->_NAME == _NAME) return SWITCH_STATUS_FALSE; \
|
||||
if (ptr && ptr->_NAME == _NAME) return SWITCH_STATUS_FALSE; \
|
||||
if ((hook = switch_core_session_alloc(session, sizeof(*hook))) != 0) { \
|
||||
hook->_NAME = _NAME ; \
|
||||
if (! session->event_hooks._NAME ) { \
|
||||
session->event_hooks._NAME = hook; \
|
||||
} else { \
|
||||
for (ptr = session->event_hooks._NAME; ptr && ptr->next; ptr = ptr->next); \
|
||||
ptr->next = hook; \
|
||||
} \
|
||||
return SWITCH_STATUS_SUCCESS; \
|
||||
|
@ -67,7 +67,6 @@ typedef struct {
|
||||
} limit_hash_item_t;
|
||||
|
||||
typedef struct {
|
||||
uint8_t have_state_handler;
|
||||
switch_hash_t *hash;
|
||||
} limit_hash_private_t;
|
||||
|
||||
@ -377,7 +376,7 @@ static switch_status_t hash_state_handler(switch_core_session_t *session)
|
||||
|
||||
/* Remove handler */
|
||||
switch_core_event_hook_remove_state_change(session, hash_state_handler);
|
||||
pvt->have_state_handler = 0;
|
||||
|
||||
|
||||
switch_mutex_unlock(globals.limit_hash_mutex);
|
||||
}
|
||||
@ -778,7 +777,6 @@ SWITCH_STANDARD_APP(limit_function)
|
||||
char buf[80] = "";
|
||||
callback_t cbt = { 0 };
|
||||
switch_channel_t *channel = switch_core_session_get_channel(session);
|
||||
switch_bool_t new_channel = SWITCH_FALSE;
|
||||
|
||||
if (!switch_strlen_zero(data)) {
|
||||
mydata = switch_core_session_strdup(session, data);
|
||||
@ -812,7 +810,6 @@ SWITCH_STANDARD_APP(limit_function)
|
||||
}
|
||||
|
||||
|
||||
new_channel = !switch_channel_get_variable(channel, "limit_realm");
|
||||
switch_channel_set_variable(channel, "limit_realm", realm);
|
||||
switch_channel_set_variable(channel, "limit_id", id);
|
||||
switch_channel_set_variable(channel, "limit_max", argv[2]);
|
||||
@ -829,9 +826,9 @@ SWITCH_STANDARD_APP(limit_function)
|
||||
goto done;
|
||||
}
|
||||
|
||||
if (new_channel) {
|
||||
switch_core_event_hook_add_state_change(session, db_state_handler);
|
||||
}
|
||||
switch_core_event_hook_add_state_change(session, db_state_handler);
|
||||
switch_core_event_hook_add_state_change(session, db_state_handler);
|
||||
|
||||
sql =
|
||||
switch_mprintf("insert into limit_data (hostname, realm, id, uuid) values('%q','%q','%q','%q');", globals.hostname, realm, id,
|
||||
switch_core_session_get_uuid(session));
|
||||
@ -1025,11 +1022,9 @@ SWITCH_STANDARD_APP(limit_hash_function)
|
||||
switch_channel_set_variable(channel, "limit_rate", srate);
|
||||
switch_channel_set_variable(channel, switch_core_session_sprintf(session, "limit_rate_%s", hashkey), srate);
|
||||
}
|
||||
|
||||
if (!pvt->have_state_handler) {
|
||||
switch_core_event_hook_add_state_change(session, hash_state_handler);
|
||||
pvt->have_state_handler = 1;
|
||||
}
|
||||
|
||||
switch_core_event_hook_add_state_change(session, hash_state_handler);
|
||||
|
||||
|
||||
end:
|
||||
switch_mutex_unlock(globals.limit_hash_mutex);
|
||||
|
Loading…
x
Reference in New Issue
Block a user