From b914d9ecc045651039aa2c88a53630c8864de0ee Mon Sep 17 00:00:00 2001 From: markster Date: Thu, 5 Aug 2004 21:36:33 +0000 Subject: [PATCH] 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 --- channels/chan_mgcp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/channels/chan_mgcp.c b/channels/chan_mgcp.c index ac3af25bf..205550b94 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;