Compare commits

...

5 Commits

Author SHA1 Message Date
AndrewTrumenov 014417f1af
Merge f15444af65 into 5cb74797fe 2025-01-17 16:41:26 +00:00
trumenov f15444af65 #exp_unix_timestamp seitched to original str 2023-09-04 20:38:03 +03:00
trumenov 6a57f99cdd #exp_unix_timestamp fixed manual types err 2023-09-04 20:17:29 +03:00
trumenov 421a4b8131 #exp_unix_timestamp added type conversion 2023-09-04 20:03:43 +03:00
trumenov 4280434868 #exp_unix_timestamp added unix timestamp for timezones 2023-09-04 19:38:26 +03:00
1 changed files with 2 additions and 2 deletions

View File

@ -2816,7 +2816,7 @@ static int show_reg_callback(void *pArg, int argc, char **argv, char **columnNam
"User: \t%s@%s\n"
"Contact: \t%s\n"
"Agent: \t%s\n"
"Status: \t%s(%s) EXP(%s) EXPSECS(%d)\n"
"Status: \t%s(%s) EXP(%s) EXPSECS(%d) EXPUNIX(%s)\n"
"Ping-Status:\t%s\n"
"Ping-Time:\t%0.2f\n"
"Host: \t%s\n"
@ -2826,7 +2826,7 @@ static int show_reg_callback(void *pArg, int argc, char **argv, char **columnNam
"Auth-Realm: \t%s\n"
"MWI-Account:\t%s@%s\n\n",
switch_str_nil(argv[0]), switch_str_nil(argv[1]), switch_str_nil(argv[2]), switch_str_nil(argv[3]),
switch_str_nil(argv[7]), switch_str_nil(argv[4]), switch_str_nil(argv[5]), exp_buf, exp_secs, switch_str_nil(argv[18]),
switch_str_nil(argv[7]), switch_str_nil(argv[4]), switch_str_nil(argv[5]), exp_buf, exp_secs, switch_str_nil(argv[6]), switch_str_nil(argv[18]),
(float)atoll(switch_str_nil(argv[19]))/1000, switch_str_nil(argv[11]), switch_str_nil(argv[12]),
switch_str_nil(argv[13]), switch_str_nil(argv[14]),
switch_str_nil(argv[15]), switch_str_nil(argv[16]), switch_str_nil(argv[17]));