/usr/share/perl5/Net/SIP/Response.pod is in libnet-sip-perl 0.812-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | =head1 NAME
Net::SIP::Response - handling of SIP response packets
=head1 SYNOPSIS
my $resp = Net::SIP::Response->new( '401','Authorization required',... );
=head1 DESCRIPTION
Subclass of L<Net::SIP::Packet> for handling response packets.
=head1 CONSTRUCTOR
Inherited from L<Net::SIP::Packet>. See there.
Seldom used directly, usually responses get not generated from
scratch, but based on a request with the B<create_response> method
from L<Net::SIP::Request>.
=head1 METHODS
=over 4
=item code
Get numerical code of response.
=item msg
Get text for code from response.
=item method
Get method for original request by parsing the CSeq header.
=back
|