[Freeswitch-trunk] [commit] r3721 - in freeswitch/trunk/src/mod/endpoints: mod_dingaling mod_sofia
Freeswitch SVN
anthm at freeswitch.org
Tue Dec 19 12:51:37 EST 2006
Author: anthm
Date: Tue Dec 19 12:51:36 2006
New Revision: 3721
Modified:
freeswitch/trunk/src/mod/endpoints/mod_dingaling/mod_dingaling.c
freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c
Log:
xmas presence
Modified: freeswitch/trunk/src/mod/endpoints/mod_dingaling/mod_dingaling.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_dingaling/mod_dingaling.c (original)
+++ freeswitch/trunk/src/mod/endpoints/mod_dingaling/mod_dingaling.c Tue Dec 19 12:51:36 2006
@@ -306,7 +306,8 @@
}
switch(event->event_id) {
- case SWITCH_EVENT_PRESENCE_PROBE: {
+ case SWITCH_EVENT_PRESENCE_PROBE:
+ if (proto && !strcasecmp(proto, MDL_CHAT_PROTO)) {
char *sql;
switch_core_db_t *db;
char *errmsg;
@@ -323,7 +324,7 @@
switch_core_db_close(db);
switch_safe_free(sql);
}
- }
+ }
return;
case SWITCH_EVENT_PRESENCE_IN:
if (!status) {
Modified: freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c (original)
+++ freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c Tue Dec 19 12:51:36 2006
@@ -5326,34 +5326,35 @@
switch(event->event_id) {
- case SWITCH_EVENT_PRESENCE_PROBE: {
- switch_core_db_t *db;
- char *to = switch_event_get_header(event, "to");
- char *user, *host;
+ case SWITCH_EVENT_PRESENCE_PROBE:
+ if (proto && !strcasecmp(proto, SOFIA_CHAT_PROTO)) {
+ switch_core_db_t *db;
+ char *to = switch_event_get_header(event, "to");
+ char *user, *host;
- if (!to || !(user = strdup(to))) {
- return;
- }
+ if (!to || !(user = strdup(to))) {
+ return;
+ }
- if (!(db = switch_core_db_open_file(profile->dbname))) {
- switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error Opening DB %s\n", profile->dbname);
+ if (!(db = switch_core_db_open_file(profile->dbname))) {
+ switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error Opening DB %s\n", profile->dbname);
+ switch_safe_free(user);
+ return;
+ }
+
+ if ((host = strchr(user, '@'))) {
+ *host++ = '\0';
+ }
+ if (user && host &&
+ (sql = switch_mprintf("select user,host,'Registered','unknown','' from sip_registrations where user='%q' and host='%q'", user, host))) {
+ switch_mutex_lock(profile->ireg_mutex);
+ switch_core_db_exec(db, sql, resub_callback, profile, &errmsg);
+ switch_mutex_unlock(profile->ireg_mutex);
+ switch_safe_free(sql);
+ }
switch_safe_free(user);
- return;
+ switch_core_db_close(db);
}
-
- if ((host = strchr(user, '@'))) {
- *host++ = '\0';
- }
- if (user && host &&
- (sql = switch_mprintf("select user,host,'Registered','unknown','' from sip_registrations where user='%q' and host='%q'", user, host))) {
- switch_mutex_lock(profile->ireg_mutex);
- switch_core_db_exec(db, sql, resub_callback, profile, &errmsg);
- switch_mutex_unlock(profile->ireg_mutex);
- switch_safe_free(sql);
- }
- switch_safe_free(user);
- switch_core_db_close(db);
- }
return;
case SWITCH_EVENT_PRESENCE_IN:
sql = switch_mprintf("select 1,'%q','%q',* from sip_subscriptions where proto='%q' and event='%q' and sub_to_user='%q' and sub_to_host='%q'",
More information about the Freeswitch-trunk
mailing list