summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlle Johansson <oej@edvina.net>2009-09-07 16:08:08 +0000
committerOlle Johansson <oej@edvina.net>2009-09-07 16:08:08 +0000
commit11574bcfcff52d5437045cacb96ddf1addf3b5d5 (patch)
treefe114c889edf481c0ccc3f092d5e8c6389b7fea4
parent246e0852a748763242594eb319e05cc9b98ce423 (diff)
Since it's possible to have more than 999 calls, I'm changing the call counter roof to something higher.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@216805 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--channels/chan_sip.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index f2a9fbc59..1dea03cf4 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -1205,10 +1205,10 @@ static int global_prematuremediafilter; /*!< Enable/disable premature frames in
static int global_rtptimeout; /*!< Time out call if no RTP */
static int global_rtpholdtimeout; /*!< Time out call if no RTP during hold */
static int global_rtpkeepalive; /*!< Send RTP keepalives */
-static int global_reg_timeout;
+static int global_reg_timeout;
static int global_regattempts_max; /*!< Registration attempts before giving up */
static int global_callcounter; /*!< Enable call counters for all devices. This is currently enabled by setting the peer
- call-limit to 999. When we remove the call-limit from the code, we can make it
+ call-limit to UINT_MAX. When we remove the call-limit from the code, we can make it
with just a boolean flag in the device structure */
static unsigned int global_tos_sip; /*!< IP type of service for SIP packets */
static unsigned int global_tos_audio; /*!< IP type of service for audio RTP packets */
@@ -24045,7 +24045,7 @@ static void set_peer_defaults(struct sip_peer *peer)
peer->autoframing = global_autoframing;
peer->qualifyfreq = global_qualifyfreq;
if (global_callcounter)
- peer->call_limit=999;
+ peer->call_limit=UINT_MAX;
ast_string_field_set(peer, vmexten, default_vmexten);
ast_string_field_set(peer, secret, "");
ast_string_field_set(peer, remotesecret, "");
@@ -24363,7 +24363,7 @@ static struct sip_peer *build_peer(const char *name, struct ast_variable *v, str
} else if (!strcasecmp(v->name, "callbackextension")) {
ast_copy_string(callback, v->value, sizeof(callback));
} else if (!strcasecmp(v->name, "callcounter")) {
- peer->call_limit = ast_true(v->value) ? 999 : 0;
+ peer->call_limit = ast_true(v->value) ? UINT_MAX : 0;
} else if (!strcasecmp(v->name, "call-limit")) {
peer->call_limit = atoi(v->value);
if (peer->call_limit < 0)