From: Mark Spencer Date: Thu, 5 Aug 2004 21:36:33 +0000 (+0000) Subject: Fix little MGCP buglet with the wildcard endpoint (bug #2216) X-Git-Tag: 1.0.0-rc2~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a2e82071c55b535b4278a21891913fc680cb6f92;p=thirdparty%2Fasterisk.git Fix little MGCP buglet with the wildcard endpoint (bug #2216) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3578 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_mgcp.c b/channels/chan_mgcp.c index ac3af25bf0..205550b949 100755 --- a/channels/chan_mgcp.c +++ b/channels/chan_mgcp.c @@ -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;