/usr/share/perl5/Net/Hotline/User.pm is in libnet-hotline-perl 0.83-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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | package Net::Hotline::User;
## Copyright(c) 1998-2002 by John C. Siracusa. All rights reserved. This
## program is free software; you can redistribute it and/or modify it under
## the same terms as Perl itself.
use strict;
use vars qw($VERSION);
$VERSION = '0.80';
sub new
{
my($class, @args) = @_;
my($data) = join('', @args);
my($self);
if(@args == 5)
{
$self =
{
'SOCKET' => $args[0],
'NICK' => $args[1],
'LOGIN' => $args[2],
'ICON' => $args[3],
'COLOR' => $args[4],
'INFO' => undef
};
}
elsif(@args == 1)
{
my($nick_len) = unpack("n", substr($data, 6, 2));
$self =
{
'SOCKET' => unpack("n", substr($data, 0, 2)),
'ICON' => unpack("n", substr($data, 2, 2)),
'COLOR' => unpack("n", substr($data, 4, 2)),
'NICK' => join('', substr($data, 8, $nick_len)),
'LOGIN' => undef,
'INFO' => undef
};
}
else
{
$self =
{
'SOCKET' => undef,
'NICK' => undef,
'LOGIN' => undef,
'ICON' => undef,
'COLOR' => undef,
'INFO' => undef
};
}
bless $self, $class;
return $self;
}
sub socket
{
$_[0]->{'SOCKET'} = $_[1] if(@_ > 1 && $_[1] =~ /^\d+$/);
return $_[0]->{'SOCKET'};
}
sub nick
{
$_[0]->{'NICK'} = $_[1] if(defined($_[1]));
return $_[0]->{'NICK'};
}
sub login
{
$_[0]->{'LOGIN'} = $_[1] if(defined($_[1]));
return $_[0]->{'LOGIN'};
}
sub icon
{
$_[0]->{'ICON'} = $_[1] if(@_ > 1 && $_[1] =~ /^-?\d+$/);
return $_[0]->{'ICON'};
}
sub color
{
$_[0]->{'COLOR'} = $_[1] if(@_ > 1 && $_[1] =~ /^\d+$/);
return $_[0]->{'COLOR'};
}
sub info
{
$_[0]->{'INFO'} = $_[1] if(defined($_[1]));
return $_[0]->{'INFO'};
}
1;
|