From: Joshua Colp Date: Wed, 12 Jul 2006 15:23:59 +0000 (+0000) Subject: Add support to have maxauthreq as a global option X-Git-Tag: 1.2.10~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff29ba62962f96a656b5fe7b3934500dc058da3a;p=thirdparty%2Fasterisk.git Add support to have maxauthreq as a global option git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@37439 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c index 1ce7fb349d..f75b21c400 100644 --- a/channels/chan_iax2.c +++ b/channels/chan_iax2.c @@ -147,6 +147,7 @@ static char context[80] = "default"; static char language[MAX_LANGUAGE] = ""; static char regcontext[AST_MAX_CONTEXT] = ""; +static int maxauthreq = 0; static int max_retries = 4; static int ping_time = 20; static int lagrq_time = 10; @@ -8432,6 +8433,7 @@ static struct iax2_user *build_user(const char *name, struct ast_variable *v, in if (user) { memset(user, 0, sizeof(struct iax2_user)); + user->maxauthreq = maxauthreq; user->curauthreq = oldcurauthreq; user->prefs = prefs; user->capability = iax2_capability; @@ -8868,6 +8870,10 @@ static int set_config(char *config_file, int reload) } } else if (!strcasecmp(v->name, "language")) { ast_copy_string(language, v->value, sizeof(language)); + } else if (!strcasecmp(v->name, "maxauthreq")) { + maxauthreq = atoi(v->value); + if (maxauthreq < 0) + maxauthreq = 0; } /*else if (strcasecmp(v->name,"type")) */ /* ast_log(LOG_WARNING, "Ignoring %s\n", v->name); */ v = v->next;