• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

examples/H19-Sep-2006-275127

lib/Net/H19-Sep-2006-2,5431,150

t/H19-Sep-2006-313217

Build.PLH A D19-Sep-2006404 2722

ChangesH A D19-Sep-20061.2 KiB4132

MANIFESTH A D19-Sep-2006313 2120

META.ymlH A D19-Sep-2006510 2726

Makefile.PLH A D19-Sep-20061.1 KiB3222

READMEH A D19-Sep-20061.7 KiB7545

README

1Net-SDP version
2===============
3
4Net::SDP is a parser and generator for
5
6SDP - Session Description Protocol (rfc2327)
7
8Have a look at the example scripts for basic outline of
9how to use the module.
10
11
12INSTALLATION
13
14	I use Module::Build to build and install the module.
15	To install this module type the following:
16
17		perl Build.PL
18		./Build
19		./Build test
20
21	And then as root:
22
23		./Build install
24
25	Module::Build is available in the Debian package:
26
27		libmodule-build-perl
28
29
30EXAMPLES
31
32	sdp2rat
33		Launch rat (Robust Audio Tool) with parameters taken from
34		an SDP file. This used to be a stand alone script which
35		I converted to use Net::SDP.
36
37	parse_and_generate.pl
38		This script should parse in an SDP file and re-create it.
39		The input and output should be the same (apart from a couple
40		of line re-orderings perhaps). If you find a valid SDP file
41		that Net::SDP cannot re-produce, please email it to me so
42		that I can make corrections :)
43
44	sdpinfo.pl
45		Parses and displays basic information about an SDP session.
46		Shows example of how to process each of the Time and Media
47		descriptions.
48
49	simple_generate.pl
50		Creates a simple SDP session, with single time and media
51		description. Prints the resulting SDP data to STDOUT.
52
53
54DEPENDENCIES
55
56	This module depends upon Sys::Hostname and Net::hostent,
57	which are both standard modules in recent perl distributions.
58
59	LWP is recommended, but not required.
60
61
62AUTHOR
63
64	Nicholas Humfrey, njh@cpan.org
65
66
67COPYRIGHT AND LICENSE
68
69	Copyright (C) 2004 University of Southampton
70
71	This library is free software; you can redistribute it and/or modify it
72	under the same terms as Perl itself, either Perl version 5.005 or, at
73	your option, any later version of Perl 5 you may have available.
74
75