diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2000-11-17 12:19:22 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2000-11-17 12:19:22 +0000 |
commit | d615f4ca564f838b39bd8b504a3107011d951a03 (patch) | |
tree | d799b77773a040bd9f634696266507c9072dd071 /net/rtptools | |
parent | Remove do-package target that was running "make package" in (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_2_0'.release/4.2.0
Diffstat (limited to 'net/rtptools')
-rw-r--r-- | net/rtptools/Makefile | 27 | ||||
-rw-r--r-- | net/rtptools/distinfo | 1 | ||||
-rw-r--r-- | net/rtptools/files/patch-ab | 69 | ||||
-rw-r--r-- | net/rtptools/pkg-comment | 1 | ||||
-rw-r--r-- | net/rtptools/pkg-descr | 13 | ||||
-rw-r--r-- | net/rtptools/pkg-plist | 8 |
6 files changed, 0 insertions, 119 deletions
diff --git a/net/rtptools/Makefile b/net/rtptools/Makefile deleted file mode 100644 index a926a4843282..000000000000 --- a/net/rtptools/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# New ports collection makefile for: rtptools -# Date created: 5 January 1998 -# Whom: fenner -# -# $FreeBSD$ -# - -PORTNAME= rtptools -PORTVERSION= 1.14 -CATEGORIES= mbone -MASTER_SITES= http://www.cs.columbia.edu/~hgs/rtptools/src/ - -MAINTAINER= fenner@FreeBSD.org - -GNU_CONFIGURE= yes - -DOCFILES= README ChangeLog.html rtptools.html - -post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/rtptools -.for i in ${DOCFILES} - ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/rtptools -.endfor -.endif - -.include <bsd.port.mk> diff --git a/net/rtptools/distinfo b/net/rtptools/distinfo deleted file mode 100644 index 07f0dfd19bb1..000000000000 --- a/net/rtptools/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (rtptools-1.14.tar.gz) = 1b88a89d4fbf32fd54e8508d84ece62e diff --git a/net/rtptools/files/patch-ab b/net/rtptools/files/patch-ab deleted file mode 100644 index 90f2b19065a9..000000000000 --- a/net/rtptools/files/patch-ab +++ /dev/null @@ -1,69 +0,0 @@ -Index: rtp.h ---- 1.1.1.2 1997/12/17 03:37:05 -+++ rtp.h 1997/12/17 04:26:01 -@@ -94,13 +94,18 @@ - #define RTCP_VALID_MASK (0xc000 | 0x2000 | 0xfe) - #define RTCP_VALID_VALUE ((RTP_VERSION << 14) | RTCP_SR) - -+#define RTCP_FRACTION(x) (((x) >> 24) & 0xFF) -+#define RTCP_LOST(x) ((((x) & 0xFFFFFF) < 0x800000) ? \ -+ ((x) & 0xFFFFFF) \ -+ : (((x) & 0xFFFFFF) - 0x1000000)) -+ - /* - * Reception report block - */ - typedef struct { - u_int32 ssrc; /* data source being reported */ -- unsigned int fraction:8; /* fraction lost since last SR/RR */ -- int lost:24; /* cumul. no. pkts lost (signed!) */ -+ u_int32 fraclost; /* fraction lost since last SR/RR and */ -+ /* cumul. no. pkts lost (signed!) */ - u_int32 last_seq; /* extended last seq. no. received */ - u_int32 jitter; /* interarrival jitter */ - u_int32 lsr; /* last SR packet from this source */ -=================================================================== -Index: rtpdump.c ---- 1.1.1.2 1997/12/17 03:37:07 -+++ rtpdump.c 1997/12/17 04:26:00 -@@ -400,10 +400,10 @@ - (unsigned long)ntohl(r->r.sr.psent), - (unsigned long)ntohl(r->r.sr.osent)); - for (i = 0; i < r->common.count; i++) { -- printf(" (ssrc=%0lx fraction=%g lost=%lu last_seq=%lu jit=%lu lsr=%lu dlsr=%lu)\n", -+ printf(" (ssrc=0x%0lx fraction=%g lost=%lu last_seq=%lu jit=%lu lsr=%lu dlsr=%lu)\n", - (unsigned long)ntohl(r->r.sr.rr[i].ssrc), -- r->r.sr.rr[i].fraction / 256., -- (unsigned long)ntohl(r->r.sr.rr[i].lost), /* XXX I'm pretty sure this is wrong */ -+ RTCP_FRACTION(ntohl(r->r.sr.rr[i].fraclost)) / 256., -+ RTCP_LOST(ntohl(r->r.sr.rr[i].fraclost)), - (unsigned long)ntohl(r->r.sr.rr[i].last_seq), - (unsigned long)ntohl(r->r.sr.rr[i].jitter), - (unsigned long)ntohl(r->r.sr.rr[i].lsr), -@@ -417,10 +417,10 @@ - (unsigned long)ntohl(r->r.rr.ssrc), r->common.p, r->common.count, - ntohs(r->common.length)); - for (i = 0; i < r->common.count; i++) { -- printf("(ssrc=%0lx fraction=%g lost=%lu last_seq=%lu jit=%lu lsr=%lu dlsr=%lu)\n", -+ printf(" (ssrc=0x%0lx fraction=%g lost=%lu last_seq=%lu jit=%lu lsr=%lu dlsr=%lu)\n", - (unsigned long)ntohl(r->r.rr.rr[i].ssrc), -- r->r.rr.rr[i].fraction / 256., -- (unsigned long)ntohl(r->r.rr.rr[i].lost), -+ RTCP_FRACTION(ntohl(r->r.rr.rr[i].fraclost)) / 256., -+ RTCP_LOST(ntohl(r->r.rr.rr[i].fraclost)), - (unsigned long)ntohl(r->r.rr.rr[i].last_seq), - (unsigned long)ntohl(r->r.rr.rr[i].jitter), - (unsigned long)ntohl(r->r.rr.rr[i].lsr), -=================================================================== -Index: rtpsend.c ---- 1.1.1.2 1997/12/17 03:37:11 -+++ rtpsend.c 1997/12/17 04:25:11 -@@ -601,6 +601,8 @@ - - if (optind < argc) { - if (hpt(argv[optind], (struct sockaddr *)&sin, &ttl) < 0) usage(argv[0]); -+ } else { -+ usage(argv[0]); - } - - /* create/connect sockets */ diff --git a/net/rtptools/pkg-comment b/net/rtptools/pkg-comment deleted file mode 100644 index 4e0d5f964364..000000000000 --- a/net/rtptools/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A set of tools to record, playback and monitor RTPv2 data streams diff --git a/net/rtptools/pkg-descr b/net/rtptools/pkg-descr deleted file mode 100644 index 4dc99ec5b4af..000000000000 --- a/net/rtptools/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -The rtptools distribution consists of a number of small applications that -can be used for processing RTP data. - -rtpplay - play back RTP sessions recorded by rtpdump -rtpsend - generate RTP packets from textual description, generated by hand or - rtpdump -rtpdump - parse and print RTP packets, generating output files suitable for - rtpplay and rtpsend -rtptrans - RTP translator between unicast and multicast networks diff --git a/net/rtptools/pkg-plist b/net/rtptools/pkg-plist deleted file mode 100644 index 8283c955a1fe..000000000000 --- a/net/rtptools/pkg-plist +++ /dev/null @@ -1,8 +0,0 @@ -bin/rtpdump -bin/rtpplay -bin/rtpsend -bin/rtptrans -share/doc/rtptools/README -share/doc/rtptools/ChangeLog.html -share/doc/rtptools/rtptools.html -@dirrm share/doc/rtptools |