/usr/share/perl5/Net/Whois/RIPE.pod is in libnet-whois-ripe-perl 1.23-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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 | =head1 NAME
Net::Whois::RIPE - implementation of RIPE Whois.
=head1 SYNOPSIS
use Net::Whois::RIPE;
$whois = Net::Whois::RIPE->new($host);
$whois = Net::Whois::RIPE->new($host,Timeout=>10);
$whois = Net::Whois::RIPE->new($host,Timeout=>10,Port=>43);
$whois->no_recursive;
$whois->source('APNIC');
$whois->type('inetnum');
foreach $inet ($whois->query('203.203.203.203')) {
print $inet->inetnum, "\n";
}
$whois->query('202.12.28.0');
$whois->update($text);
# to minimise memory requirements on large lookups...
$iterator = $whois->query_iterator('DNS3-AP');
while ($obj = $iterator->next) {
...
}
$whois->template('inetnum');
$whois->verbose_template('inetnum');
$whois->debug(1);
$whois->max_read_size(1024);
$whois->search_all; # -a
$whois->fast_raw; # -F
$whois->find_less; # -L
$whois->find_more; # -m
$whois->find_all_more; # -M
$whois->no_recursive; # -r
$whois->no_referral; # -R
$whois->no_sugar; # -S
$whois->no_filtering; # -B
$whois->no_grouping; # -G
$whois->inverse_lookup($attribute); # -i $attribute
$whois->source('APNIC'); # -s APNIC
$whois->type('person'); # -T person
# query only
$whois->port();
$whois->server();
=head1 DESCRIPTION
Net::Whois::RIPE class implementing a RIPE whois client.
=head1 CONSTRUCTOR
=over 4
=item B<new (HOST [,OPTIONS])>
This is the constructor for a new Net::Whois::RIPE object. C<HOST> is the
name of the remote host to which a whois connection is required.
C<OPTIONS> are passed in a hash like fashion, using key and value pairs.
Possible options are:
Port - The port number to connect to on the remote machine
Timeout - Set a timeout value in seconds (defaults to 30)
Debug - See debug methog.
The constructor returns undef on failure. If B<debug> is on then a message
is carped about the failure.
=back
=head1 METHODS
=over 4
=item B<template(WHOIS_OBJECT_NAME)>
Sends a template request to whois host for a template of WHOIS_OBJECT_NAME.
Results are returned in a I<Net::Whois::RIPE::Object> object. The template is
retrieved via the I<content> method on the I<Net::Whois::RIPE::Object> object.
$t = $whois->template('all');
$t = $whois->template('inetnum');
$t = $whois->template('person');
$text = $t->content;
If WHOIS_OBJECT_NAME is undefined then the method will carp (under debug)
and return undef.
=item B<verbose_template(WHOIS_OBJECT_NAME)>
Like B<template>, but sends a verbose template request to the whois host for
WHOIS_OBJECT_NAME. Results are returned in a I<Net::Whois::RIPE::Object> object.
The verbose template is retrieved via the I<content> method on the
I<Net::Whois::RIPE::Object> object.
$vt = $whois->verbose_template('person');
$text = $vt->content;
If WHOIS_OBJECT_NAME is undefined then the method will carp and return undef.
=item B<query(QUERY_TEXT)>
Formats query flag options (see below) and sends them and QUERY_TEXT to the
server. If called in a scalar context then the first object returned from
the server is passed back as a single I<Net::Whois::RIPE::Object> object.
In an array context, all returned objects returned from the server are
parsed into in a list and returned (potentially quite large).
$q = $whois->query('key') # a single Query
@q = $whois->query('key') # an array of Queries
If QUERY_KEY is undefined, undef is returned. Any failure will carp and
return undef.
If B<max_read_size> is greater than zero then the server response will be
abandoned when greater than max_read_size bytes have been read. The last
object read will have warning messages set to indicate that
the response was cut.
=item B<query_iterator(QUERY_TEXT)>
Similar to I<query> except that a Net::Whois::RIPE::Iterator object is
returned. This object is used to iterate over the results of the query.
This was created in response to huge results returned by whois queries where
over 1000 objects may be returned. Query iterator returns an object at a time
via the I<next> method as opposed to I<query> which returns an array of
objects.
$iterator = $whois->query_iterator
or die "unable to create iterator";
while ($obj = $iterator->next) {
...
}
=item B<update(UPDATE_TEXT)>
Sends UPDATE_TEXT directly to server. Query flag options (below) are not used
by update. Server response is returned via I<Net::Whois::RIPE::Object>. Use the
B<content> method on the Query object to via server response.
my $q = $whois->update($message)
print $q->content
If UPDATE_TEXT is undefined, undef is returned.
Any failure will carp and return undef.
If no I<changed> field can be found to determine a login and domain the method
will carp and return undef.
If B<max_read_size> is greater than zero then the server response will be
abandoned when greater than max_read_size bytes have been read.
=item B<debug(LEVEL)>
Sets/gets debugging level on the class or an object.
0 - no debugging
1 - debugging on
2 - carp on IO::Socket::INET
=item B<max_read_size([INTEGER])>
Sets/reads the maximum number of bytes that I<Net::Whois::RIPE> will
read before returning. This is to limit huge responses from the server
overloading scripts.
a I<max_read_size> of zero indicates B<no> limit.
=item B<flag options>
The following flags may be set by calling the method. Their meaning is
identical to the ripe whois client. These flags require no arguments, they
simply set the flag on.
Method Equivalent whois flag
search_all -a
fast_raw -F
find_less -L
find_more -m
find_all_more -M
no_recursive -r
no_referral -R
no_sugar -S
no_filtering -B
no_grouping -G
=item B<flag options taking values>
The following flags may be set by calling the method with a value.
There meaning is identical to the ripe whois client.
Method Equivalent whois flag
inverse_lookup(ATTRIBUTE) -i ATTRIBUTE
port(PORT) -p PORT
source(SOURCE) -s SOURCE
type(TYPE) -T TYPE
=back
=head1 AUTHOR
Paul Gampe, <pgampe@users.sourceforge.net>
Kevin Baker, <shagol@users.sourceforge.net>
Bruce Campbell, <bxc@users.sourceforge.net>
=head1 TODO
Update could be made clever enough to determine if it was been passed
a string to update or a Net::Whois::RIPE::Object and adapt its behaviour.
=head1 SEE ALSO
Net::Whois::RIPE::Iterator
Net::Whois::RIPE::Object
Net::Whois::RIPE::Object::Template
http://www.ripe.net/db/about.html
=head1 COPYRIGHT
Copyright (C) 1998 Paul Gampe and APNIC Pty. Ltd.
Copyright (C) 2000 Kevin Baker and APNIC Pty. Ltd.
Copyright (C) 2004-2005 Paul Gampe
This program is free software; you can redistribute it
and/or modify it under the terms of the GNU General Public
License as published by the Free Software Foundation;
either version 1, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public
License along with this program; if not, write to the
Free Software Foundation, Inc.,
675 Mass Ave, Cambridge, MA 02139, USA.
|