This file is indexed.

/usr/share/perl5/Socket/GetAddrInfo/XS.pm is in libsocket-getaddrinfo-perl 0.20-2build2.

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
#  You may distribute under the terms of either the GNU General Public License
#  or the Artistic License (the same terms as Perl itself)
#
#  (C) Paul Evans, 2010-2011 -- leonerd@leonerd.org.uk

package Socket::GetAddrInfo::XS;

use strict;
use warnings;

our $VERSION = '0.20';

# Load the actual code into Socket::GetAddrInfo
package # hide from indexer
  Socket::GetAddrInfo;

our @EXPORT = qw(
   getaddrinfo
   getnameinfo
);

die '$Socket::GetAddrInfo::NO_XS is set' if our $NO_XS;

require XSLoader;
XSLoader::load( __PACKAGE__, $Socket::GetAddrInfo::XS::VERSION );

# Keep perl happy; keep Britain tidy
1;