Spec-Zone .ru
спецификации, руководства, описания, API
Spec-Zone .ru
спецификации, руководства, описания, API
Библиотека разработчика Mac Разработчик
Поиск

 

Эта страница руководства для  версии 10.9 Mac OS X

Если Вы выполняете различную версию  Mac OS X, просматриваете документацию локально:

Читать страницы руководства

Страницы руководства предназначаются как справочник для людей, уже понимающих технологию.

  • Чтобы изучить, как руководство организовано или узнать о синтаксисе команды, прочитайте страницу руководства для страниц справочника (5).

  • Для получения дополнительной информации об этой технологии, ищите другую документацию в Библиотеке Разработчика Apple.

  • Для получения общей информации о записи сценариев оболочки, считайте Shell, Пишущий сценарий Учебника для начинающих.



IP::Country::MaxMind(3)              User Contributed Perl Documentation             IP::Country::MaxMind(3)



NAME
       IP::Country::MaxMind - Look up country by IP Address

SYNOPSIS
         use IP::Country::MaxMind;

         my $gi = IP::Country::MaxMind->new(GEOIP_STANDARD);

         # look up IP address '65.15.30.247'
         # returns undef if country is unallocated, or not defined in our database
         my $cc1 = $gi->inet_atocc('65.15.30.247');
         my $cc2 = $gi->inet_atocc('yahoo.com');

DESCRIPTION
       This module adapts the Geo::IP module to use the same interface as the IP::Country modules; thus
       allowing users to easily switch between using the two underlying databases.

DATABASE UPDATES
       Free monthly updates to the database are available from

         http://www.maxmind.com/download/geoip/database/

       If you require greater accuracy, MaxMind offers a Premium database on a paid subscription basis.

       The author of this module is in no way associated with MaxMind.

CLASS METHODS
       $gi = IP::Country::MaxMind->new( $flags );
           Constructs a new IP::Country::MaxMind object with the default database located inside your
           system's datadir, typically /usr/local/share/GeoIP/GeoIP.dat.

           Flags can be set to either GEOIP_STANDARD, or for faster performance (at a cost of using more
           memory), GEOIP_MEMORY_CACHE.  When using memory cache you can force a reload if the file is
           updated by setting GEOIP_CHECK_CACHE.

       $gi = IP::Country::MaxMind->open( $database_filename, $flags );
           Constructs a new Geo::IP object with the database located at $database_filename.

OBJECT METHODS
       All object methods are designed to be used in an object-oriented fashion.

         $result = $object->foo_method($bar,$baz);

       Using the module in a procedural fashion (without the arrow syntax) won't work.

       $cc = $gi->inet_atocc(HOSTNAME)
           Takes a string giving the name of a host, and translates that to an two-letter country code.
           Takes arguments of both the 'rtfm.mit.edu' type and '18.181.0.24'. If the host name cannot be
           resolved, returns undef.  If the resolved IP address is not contained within the database,
           returns undef.

       $cc = $gi->inet_ntocc(IP_ADDRESS)
           Takes a string (an opaque string as returned by Socket::inet_aton()) and translates it into a
           two-letter country code. If the IP address is not contained within the database, returns undef.

       $cc = $gi->db_time()
           Returns zero. For compatibility only.

COPYRIGHT
       Copyright (C) 2002,2003 Nigel Wetters Gourlay. All Rights Reserved.

       NO WARRANTY. This module is free software; you can redistribute it and/or modify it under the same
       terms as Perl itself.



perl v5.12.5                                     2006-04-06                          IP::Country::MaxMind(3)

Сообщение о проблемах

Способ сообщить о проблеме с этой страницей руководства зависит от типа проблемы:

Ошибки содержания
Ошибки отчета в содержании этой документации к проекту Perl. (См. perlbug (1) для инструкций представления.)
Отчеты об ошибках
Сообщите об ошибках в функциональности описанного инструмента или API к Apple через Генератор отчетов Ошибки и к проекту Perl, использующему perlbug (1).
Форматирование проблем
Отчет, форматирующий ошибки в интерактивной версии этих страниц со ссылками на отзыв ниже.