home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / perl / GeoIP.pm < prev    next >
Encoding:
Perl POD Document  |  2003-09-16  |  1.5 KB  |  58 lines

  1. package Apache::GeoIP;
  2.  
  3. use strict;
  4. use vars qw($VERSION);
  5. require DynaLoader;
  6.  
  7. @Apache::GeoIP::ISA = qw(DynaLoader);
  8.  
  9. $VERSION = '1.13';
  10.  
  11. __PACKAGE__->bootstrap($VERSION);
  12.  
  13. 1;
  14.  
  15. __END__
  16.  
  17. =head1 NAME
  18.  
  19. Apache::GeoIP - Look up country by IP Address
  20.  
  21. =head1 IP ADDRESS TO COUNTRY DATABASES
  22.  
  23. Free monthly updates to the database are available from 
  24.  
  25.   http://www.maxmind.com/download/geoip/database/
  26.  
  27. This free database is similar to the database contained in IP::Country, as 
  28. well as many paid databases. It uses ARIN, RIPE, APNIC, and LACNIC whois to 
  29. obtain the IP->Country mappings.
  30.  
  31. For Win32 users, the F<GeoIP.dat> database file is expected
  32. to reside in the F</Program Files/GeoIP/> directory.
  33.  
  34. If you require greater accuracy, MaxMind offers a Premium database on a paid 
  35. subscription basis. 
  36.  
  37. =head1 MAILING LISTS AND CVS
  38.  
  39. A mailing list and cvs access for the GeoIP library are available 
  40. from SourceForge; see http://sourceforge.net/projects/geoip/.
  41.  
  42. =head1 SEE ALSO
  43.  
  44. L<Apache::Geo::IP> and L<Apache::Geo::Mirror>.
  45.  
  46. =head1 AUTHOR
  47.  
  48. The look-up code for associating a country with an IP address 
  49. is based on the GeoIP library and the Geo::IP Perl module, and is 
  50. Copyright (c) 2002, T.J. Mather, tjmather@tjmather.com, New York, NY, 
  51. USA. See http://www.maxmind.com/ for details. The mod_perl interface is 
  52. Copyright (c) 2002, Randy Kobes <randy@theoryx5.uwinnipeg.ca>.
  53.  
  54. All rights reserved.  This package is free software; you can redistribute it
  55. and/or modify it under the same terms as Perl itself.
  56.  
  57. =cut
  58.