summaryrefslogtreecommitdiff
path: root/net/asterisk/files/patch-rtp.c
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2007-04-13 08:06:06 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2007-04-13 08:06:06 +0000
commitacc33b14df77f1bad1c2d0a2c775185fa9e864eb (patch)
tree861d5d09092cff4fbc720b4a04db22add91bf3d3 /net/asterisk/files/patch-rtp.c
parent- incorrect comment (diff)
Long awaited upgrade to 1.4.2.
Sponsored by: Sippy Software, Inc.
Notes
Notes: svn path=/head/; revision=189887
Diffstat (limited to 'net/asterisk/files/patch-rtp.c')
-rw-r--r--net/asterisk/files/patch-rtp.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/net/asterisk/files/patch-rtp.c b/net/asterisk/files/patch-rtp.c
deleted file mode 100644
index bbc2649929f9..000000000000
--- a/net/asterisk/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))))