summaryrefslogtreecommitdiff
path: root/net/rtptools/files/patch-ad
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2011-02-11 03:06:03 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2011-02-11 03:06:03 +0000
commitb36e665e56175a7588102bec06e2ac62ffff3b5e (patch)
treed8c04c2dd9d515238e6ff20e97948fc22f7f82be /net/rtptools/files/patch-ad
parent- Update to 1.16.2 (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_8_2_0'.release/8.2.0
Notes
Notes: svn path=/head/; revision=268906 svn path=/tags/RELEASE_8_2_0/; revision=268908; tag=release/8.2.0
Diffstat (limited to 'net/rtptools/files/patch-ad')
-rw-r--r--net/rtptools/files/patch-ad27
1 files changed, 0 insertions, 27 deletions
diff --git a/net/rtptools/files/patch-ad b/net/rtptools/files/patch-ad
deleted file mode 100644
index 130804a6b732..000000000000
--- a/net/rtptools/files/patch-ad
+++ /dev/null
@@ -1,27 +0,0 @@
-
-$FreeBSD$
-
---- rtpsend.c.orig Tue Sep 10 13:24:10 2002
-+++ rtpsend.c Sat Aug 16 08:58:12 2003
-@@ -353,9 +353,9 @@
- if (strcmp(n->type, "ssrc") == 0)
- rr->ssrc = htonl(n->num);
- else if (strcmp(n->type, "fraction") == 0)
-- rr->fraction = (n->num)*256;
-- else if (strcmp(n->type, "lost") == 0) /* PP: alignment OK? */
-- rr->lost = htonl(n->num);
-+ rr->fraclost = htonl((ntohl(rr->fraclost) & 0x00ffffff) | ((n->num)*256 << 24));
-+ else if (strcmp(n->type, "lost") == 0)
-+ rr->fraclost = htonl((ntohl(rr->fraclost) & 0xff000000) | n->num);
- else if (strcmp(n->type, "last_seq") == 0)
- rr->last_seq = htonl(n->num);
- else if (strcmp(n->type, "jit") == 0)
-@@ -919,6 +919,8 @@
- local = (struct in_addr *)host->h_addr_list[0];
- sin.sin_addr = *local;
- }
-+ } else {
-+ usage(argv[0]);
- }
-
- /* create/connect sockets */