From 1cac97b8f8045ed6f8d54ec18956d5debf8ea509 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Fri, 15 Aug 2008 18:03:44 +0000 Subject: [PATCH] Merged revisions 138086 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r138086 | tilghman | 2008-08-15 13:02:15 -0500 (Fri, 15 Aug 2008) | 2 lines regseconds is actually stored as the epoch time, not registration length ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@138088 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 9c6351998d..5797a26110 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -22584,7 +22584,7 @@ static int load_module(void) "name", RQ_CHAR, 10, "ipaddr", RQ_CHAR, 15, "port", RQ_UINTEGER2, 5, - "regseconds", RQ_UINTEGER2, 5, /* Max of 18 hours */ + "regseconds", RQ_INTEGER4, 11, "defaultuser", RQ_CHAR, 10, "fullcontact", RQ_CHAR, 35, "regserver", RQ_CHAR, 20,