diff options
author | Luigi Rizzo <luigi@FreeBSD.org> | 2006-02-14 10:30:37 +0000 |
---|---|---|
committer | Luigi Rizzo <luigi@FreeBSD.org> | 2006-02-14 10:30:37 +0000 |
commit | b613e8d1c79eb9d5b6633320581862019c557080 (patch) | |
tree | 70a3c7e20f6114b7a66e4cdd210fb3b0bf32d842 /net/asterisk-devel/files/patch-rtp.c | |
parent | Document pf -- IP fragment handling panic, FreeBSD SA 06.07 (diff) |
update asterisk-devel after repo-copy
Notes
Notes:
svn path=/head/; revision=155994
Diffstat (limited to 'net/asterisk-devel/files/patch-rtp.c')
-rw-r--r-- | net/asterisk-devel/files/patch-rtp.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/net/asterisk-devel/files/patch-rtp.c b/net/asterisk-devel/files/patch-rtp.c deleted file mode 100644 index bbc2649929f9..000000000000 --- a/net/asterisk-devel/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)))) |