don't create another endpoint on a reload

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1866 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.0
Jeremy McNamara 22 years ago
parent fd0c9f6c2d
commit 83c63206c1

@ -212,7 +212,7 @@ static struct oh323_alias *build_alias(char *name, struct ast_variable *v)
} else if (!strcasecmp(v->name, "secret")) { } else if (!strcasecmp(v->name, "secret")) {
strncpy(alias->secret, v->value, sizeof(alias->secret)-1); strncpy(alias->secret, v->value, sizeof(alias->secret)-1);
} else { } else {
if (strcasecmp(v->name, "h323")) { if (strcasecmp(v->value, "h323")) {
ast_log(LOG_WARNING, "Keyword %s does not make sense in type=h323\n", v->value); ast_log(LOG_WARNING, "Keyword %s does not make sense in type=h323\n", v->value);
} }
} }
@ -1403,8 +1403,9 @@ int reload_config(void)
} }
/* fire up the H.323 Endpoint */ /* fire up the H.323 Endpoint */
if (!h323_end_point_exist()) {
h323_end_point_create(); h323_end_point_create();
}
h323debug=0; h323debug=0;
dtmfmode = H323_DTMF_RFC2833; dtmfmode = H323_DTMF_RFC2833;

Loading…
Cancel
Save