This file is indexed.

/usr/share/perl5/Net/AMQP/Frame/OOBBody.pm is in libnet-amqp-perl 0.06~dfsg-2.

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
package Net::AMQP::Frame::OOBBody;

=head1 NAME

Net::AMQP::Frame::OOBBody - AMQP wire-level out-of-band body Frame object

=head1 DESCRIPTION 

Inherits from L<Net::AMQP::Frame::Body>.

=cut

use strict;
use warnings;
use base qw(Net::AMQP::Frame::Body);

__PACKAGE__->type_id(6);

=head1 SEE ALSO

L<Net::AMQP::Frame::Body>

=head1 COPYRIGHT

Copyright (c) 2009 Eric Waters and XMission LLC (http://www.xmission.com/).  All rights reserved.  This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

The full text of the license can be found in the LICENSE file included with this module.

=head1 AUTHOR

Eric Waters <ewaters@gmail.com>

=cut

1;