record the local servers ip not the domain so we can figure out the right server later

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9209 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Ken Rice
2008-07-30 18:50:47 +00:00
parent b734a677d4
commit f3cea0b78e
3 changed files with 11 additions and 7 deletions
+5 -3
View File
@@ -385,9 +385,10 @@ void event_handler(switch_event_t *event)
long expires = (long) switch_timestamp(NULL);
char *profile_name = switch_event_get_header(event, "orig-profile-name");
char *to_user = switch_event_get_header(event, "orig-to-user");
char *to_host = switch_event_get_header(event, "orig-to-host");
sofia_profile_t *profile = NULL;
char guess_ip4[256];
if (exp_str) {
expires += atol(exp_str);
}
@@ -408,9 +409,10 @@ void event_handler(switch_event_t *event)
switch_mutex_lock(profile->ireg_mutex);
sofia_glue_execute_sql(profile, &sql, SWITCH_TRUE);
switch_find_local_ip(guess_ip4, sizeof(guess_ip4), AF_INET);
sql = switch_mprintf("insert into sip_registrations values ('%q', '%q','%q','%q','Registered', '%q', %ld, '%q', '%q', '%q')",
call_id, from_user, from_host, contact_str, rpid, expires, user_agent, to_user, to_host);
call_id, from_user, from_host, contact_str, rpid, expires, user_agent, to_user, guess_ip4);
if (sql) {
sofia_glue_execute_sql(profile, &sql, SWITCH_TRUE);