dect
/
asterisk
Archived
13
0
Fork 0

Fix little MGCP buglet with the wildcard endpoint (bug #2216)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3578 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2004-08-05 21:36:33 +00:00
parent c79f7306df
commit b914d9ecc0
1 changed files with 2 additions and 1 deletions

View File

@ -2905,7 +2905,7 @@ static int handle_request(struct mgcp_subchannel *sub, struct mgcp_request *req,
ast_verbose(VERBOSE_PREFIX_3 "Endpoint '%s@%s-%d' observed '%s'\n", p->name, p->parent->name, sub->id, ev);
}
/* Keep looking for events unless this was a hangup */
if (strcasecmp(ev, "hu") && strcasecmp(ev, "hd")) {
if (strcasecmp(ev, "hu") && strcasecmp(ev, "hd") && strcasecmp(ev, "ping")) {
transmit_notify_request(sub, p->curtone);
}
if (!strcasecmp(ev, "hd")) {
@ -3556,6 +3556,7 @@ static struct mgcp_gateway *build_gateway(char *cat, struct ast_variable *v)
strncpy(e->language, language, sizeof(e->language) - 1);
strncpy(e->musicclass, musicclass, sizeof(e->musicclass)-1);
strncpy(e->mailbox, mailbox, sizeof(e->mailbox)-1);
snprintf(e->rqnt_ident, sizeof(e->rqnt_ident), "%08x", rand());
e->msgstate = -1;
e->capability = capability;
e->parent = gw;