diff options
author | Bill Fumerola <billf@FreeBSD.org> | 1999-06-16 16:47:38 +0000 |
---|---|---|
committer | Bill Fumerola <billf@FreeBSD.org> | 1999-06-16 16:47:38 +0000 |
commit | 659b107e5bff77df45078459583a11fc8d9f1c77 (patch) | |
tree | aea115061e1cc7c8e18b075f4ffea24ad280d4cf /net/rtsp_proxy/files | |
parent | Fixed many bugs (diff) |
This is a port of Apple Computer's open source rtsp_proxy.
QuickTime streaming uses RTP/RTSP protocols
WWW: http://www.apple.com/quicktime/developers/rtsproxy.html
PR: ports/12194
Submitted By: Richard Kiss <richard@homemail.com>
Diffstat (limited to 'net/rtsp_proxy/files')
-rw-r--r-- | net/rtsp_proxy/files/patch-aa | 21 | ||||
-rw-r--r-- | net/rtsp_proxy/files/patch-ab | 11 | ||||
-rw-r--r-- | net/rtsp_proxy/files/rtsp_proxy.sh | 5 |
3 files changed, 37 insertions, 0 deletions
diff --git a/net/rtsp_proxy/files/patch-aa b/net/rtsp_proxy/files/patch-aa new file mode 100644 index 000000000000..6cc8020ee4dd --- /dev/null +++ b/net/rtsp_proxy/files/patch-aa @@ -0,0 +1,21 @@ +--- Makefile Wed Apr 21 15:45:50 1999 ++++ Makefile Tue Jun 8 01:54:44 1999 +@@ -1,6 +1,7 @@ + NAME=rtsp_proxy + OPT=-g + FLAGS=$(OPT) -Dunix -I.. ++BSDFLAGS=-DUSE_THREAD=1 -I.. + SGIFLAGS=-signed -Xcpluscomm -DUSE_THREAD=1 + SUNFLAGS=-xCC -DUSE_THREAD=1 + LINUXFLAGS=-DUSE_THREAD=0 +@@ -22,6 +23,10 @@ + $(MAINDIR)util.h \ + $(MAINDIR)shared_udp.h \ + $(MAINDIR)getopt.h ++ ++freebsd: $(NAME) ++$(NAME): $(SRC) $(HDR) ++ $(CC) $(CFLAGS) $(BSDFLAGS) $(SRC) -o $(NAME) -lc_r + + sgi: $(NAME).sgi + $(NAME).sgi: $(SRC) $(HDR) diff --git a/net/rtsp_proxy/files/patch-ab b/net/rtsp_proxy/files/patch-ab new file mode 100644 index 000000000000..a23231dab8b6 --- /dev/null +++ b/net/rtsp_proxy/files/patch-ab @@ -0,0 +1,11 @@ +--- ../qts_proxy.conf Wed Apr 21 15:45:50 1999 ++++ ../qts_proxy.conf Tue Jun 8 01:51:04 1999 +@@ -7,7 +7,7 @@ + # NOTE: lack of this line allows connections from any IP address + # It is best to limit incoming connections to your internal network. + # +-allow 17.0.0.0/8 ++allow 10.0.0.0/8 + + # + # users specifies the maximum number of simultaneous users diff --git a/net/rtsp_proxy/files/rtsp_proxy.sh b/net/rtsp_proxy/files/rtsp_proxy.sh new file mode 100644 index 000000000000..2d3bebe4f5c0 --- /dev/null +++ b/net/rtsp_proxy/files/rtsp_proxy.sh @@ -0,0 +1,5 @@ +--- rtsp_proxy.sh Wed Dec 31 16:00:00 1969 ++++ rtsp_proxy.sh Tue Jun 8 22:54:49 1999 +@@ -0,0 +1,2 @@ ++#!/bin/sh ++[ -x /usr/local/sbin/rtsp_proxy ] && /usr/local/sbin/rtsp_proxy > /dev/null & && echo $! > /var/run/rtsp_proxy.pid && echo -n ' rtsp_proxy' |