*** empty log message ***

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@667 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer 2003-03-20 21:58:38 +00:00
parent d0d50a4ad7
commit f02b64d258
1 changed files with 3 additions and 4 deletions

View File

@ -3267,10 +3267,9 @@ retrylock:
ast_verbose(VERBOSE_PREFIX_3 "Got SIP response %d \"%s\" back from %s\n", resp, rest, inet_ntoa(p->sa.sin_addr));
p->alreadygone = 1;
if (p->rtp) {
rtp = p->rtp;
p->rtp = NULL;
/* Immediately stop RTP */
ast_rtp_destroy(rtp);
struct sockaddr_in sin = { AF_INET, };
/* Immediately stop RTP by setting transmit to 0 */
ast_rtp_setpeer(p->rtp, &sin);
}
/* XXX Locking issues?? XXX */
switch(resp) {