Skip to content

Commit

Permalink
From: Matt Selsky <selsky@columbia.edu>
Browse files Browse the repository at this point in the history
Subject: additional modules for URI package
To: gisle@ActiveState.com
Date: Tue, 16 Jul 2002 02:30:25 -0400

I developed some really simple modules for the URI package.  They are
URI::rtsp and URI::rtspu.  I used the URI::https module as a starting
point.  I hope to develop some LWP::Protocol modules later so that I can
use LWP to check on the status of my rtsp server use the LWP framework.
The RTSP url format is described in section 3.2 of RFC 2326.  Please
find my modules attached.  I can also provide some simple test cases if
you want, but parsing should be very similar to http so I'm not sure
that is necessary.

Thanks.
  • Loading branch information
gisle committed Jul 16, 2002
1 parent 0c68517 commit 22075db
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions URI/rtsp.pm
@@ -0,0 +1,8 @@
package URI::rtsp;

require URI::http;
@ISA=qw(URI::http);

sub default_port { 554 }

1;
8 changes: 8 additions & 0 deletions URI/rtspu.pm
@@ -0,0 +1,8 @@
package URI::rtspu;

require URI::rtsp;
@ISA=qw(URI::rtsp);

sub default_port { 554 }

1;

0 comments on commit 22075db

Please sign in to comment.