*** 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

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)); 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; p->alreadygone = 1;
if (p->rtp) { if (p->rtp) {
rtp = p->rtp; struct sockaddr_in sin = { AF_INET, };
p->rtp = NULL; /* Immediately stop RTP by setting transmit to 0 */
/* Immediately stop RTP */ ast_rtp_setpeer(p->rtp, &sin);
ast_rtp_destroy(rtp);
} }
/* XXX Locking issues?? XXX */ /* XXX Locking issues?? XXX */
switch(resp) { switch(resp) {