]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FSCORE-268
authorAnthony Minessale <anthony.minessale@gmail.com>
Wed, 14 Jan 2009 13:36:32 +0000 (13:36 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Wed, 14 Jan 2009 13:36:32 +0000 (13:36 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11186 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/switch_channel.c
src/switch_core.c

index 7c94fbd41599d5047c4631b14ba0bdb9e108da15..43e7b1b8b13d7fd1707460205c3216e7c0f19196 100644 (file)
@@ -2270,16 +2270,16 @@ SWITCH_DECLARE(switch_status_t) switch_channel_set_timestamps(switch_channel_t *
                tt_progress = (time_t) (caller_profile->times->progress / 1000000);
                mtt_progress = (time_t) (caller_profile->times->progress / 1000);
                switch_snprintf(tmp, sizeof(tmp), "%" TIME_T_FMT, tt_progress);
-               switch_channel_set_variable(channel, "answer_epoch", tmp);
+               switch_channel_set_variable(channel, "progress_epoch", tmp);
                switch_snprintf(tmp, sizeof(tmp), "%" SWITCH_TIME_T_FMT, caller_profile->times->progress);
-               switch_channel_set_variable(channel, "answer_uepoch", tmp);
+               switch_channel_set_variable(channel, "progress_uepoch", tmp);
 
                tt_progress_media = (time_t) (caller_profile->times->progress_media / 1000000);
                mtt_progress_media = (time_t) (caller_profile->times->progress_media / 1000);
                switch_snprintf(tmp, sizeof(tmp), "%" TIME_T_FMT, tt_progress_media);
-               switch_channel_set_variable(channel, "answer_epoch", tmp);
+               switch_channel_set_variable(channel, "progress_media_epoch", tmp);
                switch_snprintf(tmp, sizeof(tmp), "%" SWITCH_TIME_T_FMT, caller_profile->times->progress_media);
-               switch_channel_set_variable(channel, "answer_uepoch", tmp);
+               switch_channel_set_variable(channel, "progress_media_uepoch", tmp);
 
 
                tt_hungup = (time_t) (caller_profile->times->hungup / 1000000);
index 2926a42a881adc073cd6a1ad26f84423e8ca01cc..b51d84b7ebaf44aff1ba927b3dac12d508494e05 100644 (file)
@@ -1265,7 +1265,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_init_and_modload(switch_core_flag_t
        signal(SIGUSR1, handle_SIGHUP);
 #endif
        signal(SIGHUP, handle_SIGHUP);
-
+       printf("WTF\n");
 
        switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CONSOLE, "Bringing up environment.\n");
        switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CONSOLE, "Loading Modules.\n");