aboutsummaryrefslogtreecommitdiff
path: root/net/asterisk14/files/patch-rtp.c
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2006-03-23 22:24:03 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2006-03-23 22:24:03 +0000
commit96fe98e1c6bc0301781b0dd7dbfeef3e3f137f43 (patch)
tree7650cfe102643b74d6ad1d3efe1771281b5e66f0 /net/asterisk14/files/patch-rtp.c
parent503c7f7052756548d3712a6b0f3fb6d32ddbb8e9 (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_5_5_0'.release/5.5.0
Notes
Notes: svn path=/head/; revision=158034 svn path=/tags/RELEASE_5_5_0/; revision=158035; tag=release/5.5.0
Diffstat (limited to 'net/asterisk14/files/patch-rtp.c')
-rw-r--r--net/asterisk14/files/patch-rtp.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/net/asterisk14/files/patch-rtp.c b/net/asterisk14/files/patch-rtp.c
deleted file mode 100644
index bbc2649929f9..000000000000
--- a/net/asterisk14/files/patch-rtp.c
+++ /dev/null
@@ -1,17 +0,0 @@
-
-$FreeBSD$
-
---- rtp.c.orig Fri Jan 13 13:38:01 2006
-+++ rtp.c Fri Jan 13 13:40:50 2006
-@@ -950,8 +950,10 @@ struct ast_rtp *ast_rtp_new_with_bindadd
- rtp->us.sin_port = htons(x);
- rtp->us.sin_addr = addr;
- /* If there's rtcp, initialize it as well. */
-- if (rtp->rtcp)
-+ if (rtp->rtcp) {
- rtp->rtcp->us.sin_port = htons(x + 1);
-+ rtp->rtcp->us.sin_addr = addr;
-+ }
- /* Try to bind it/them. */
- if (!(first = bind(rtp->s, (struct sockaddr *)&rtp->us, sizeof(rtp->us))) &&
- (!rtp->rtcp || !bind(rtp->rtcp->s, (struct sockaddr *)&rtp->rtcp->us, sizeof(rtp->rtcp->us))))