aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-19 10:10:38 +0000
committerroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-19 10:10:38 +0000
commite4da318bacfb681b7acbf587fbba0bb0e5a106b1 (patch)
tree2d7f050303beac53ee1cc686e26145732eabdf10 /channels
parent9d7a1447fdf9d3c52b7ddd7125ac0fd27a5d2b14 (diff)
automerge commit
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2-netsec@13586 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index c92ac2b0a..5658d29c4 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -583,7 +583,7 @@ struct sip_auth {
#define SIP_PKT_DEBUG (1 << 0) /*!< Debug this packet */
#define SIP_PKT_WITH_TOTAG (1 << 1) /*!< This packet has a to-tag */
-static int global_rtautoclear = 120;
+static int global_rtautoclear;
/*! \brief sip_pvt: PVT structures are used for each SIP conversation, ie. a call */
static struct sip_pvt {
@@ -12454,6 +12454,7 @@ static int reload_config(void)
global_rtptimeout = 0;
global_rtpholdtimeout = 0;
global_rtpkeepalive = 0;
+ global_rtautoclear = 120;
pedanticsipchecking = 0;
global_reg_timeout = DEFAULT_REGISTRATION_TIMEOUT;
global_regattempts_max = 0;