If we receive OPTIONS as the start of a conversation, kill it immediately after giving our response

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1020 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.0
Mark Spencer 22 years ago
parent 0ad12d0e0b
commit 377303a391

@ -4188,6 +4188,10 @@ static int handle_request(struct sip_pvt *p, struct sip_request *req, struct soc
transmit_response_with_allow(p, "484 Address Incomplete", req);
else
transmit_response_with_allow(p, "200 OK", req);
/* Destroy if this OPTIONS was the opening request, but not if
it's in the middle of a normal call flow. */
if (!p->lastinvite)
p->needdestroy = 1;
} else if (!strcasecmp(cmd, "INVITE")) {
if (p->outgoing && p->owner && (p->owner->_state != AST_STATE_UP)) {
/* This is a call to ourself. Send ourselves an error code and stop

Loading…
Cancel
Save