• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

inc/H12-Jul-2011-2,5451,906

lib/Net/CIDR/H12-Jul-2011-13662

share/H12-Jul-2011-247246

t/H12-Jul-2011-199171

xt/H12-Jul-2011-3427

.gitignoreH A D15-Jun-201171 109

ChangesH A D12-Jul-20111.6 KiB9859

MANIFESTH A D15-Jun-2011698 3534

META.ymlH A D12-Jul-2011731 3332

Makefile.PLH A D12-Jul-2011855 3827

READMEH A D15-Jun-2011333 1911

README.mkdnH A D12-Jul-20111.2 KiB5633

apache_conf.ttH A D15-Jun-2011195 108

net-cidr-mobilejp-scraper.plH A D03-May-2022968 4931

README

1Net-CIDR-MobileJP version 0.0.1
2
3INSTALLATION
4
5To install this module, run the following commands:
6
7    perl Makefile.PL
8    make
9    make test
10    make install
11
12
13COPYRIGHT AND LICENCE
14
15Copyright (C) 2006, Tokuhiro Matsuno
16
17This library is free software; you can redistribute it and/or modify
18it under the same terms as Perl itself.
19

README.mkdn

1# NAME
2
3Net::CIDR::MobileJP - mobile ip address in Japan
4
5# SYNOPSIS
6
7    use Net::CIDR::MobileJP;
8    my $cidr = Net::CIDR::MobileJP->new('net-cidr-mobile-jp.yaml');
9    $cidr->get_carrier('222.7.56.248');
10    # => 'E'
11
12# DESCRIPTION
13
14Net::CIDR::MobileJP is an utility to detect an ip address is mobile (cellular) ip address or not.
15
16# METHODS
17
18## new
19
20    my $cidr = Net::CIDR::MobileJP->new('net-cidr-mobile-jp.yaml');  # from yaml
21    my $cidr = Net::CIDR::MobileJP->new({E => ['59.135.38.128/25'], ...});
22
23create new instance.
24
25The argument is 'path to yaml' or 'raw data'.
26
27## get_carrier
28
29    $cidr->get_carrier('222.7.56.248');
30
31Get the career name from IP address.
32
33Carrier name is compatible with [HTTP::MobileAgent](http://search.cpan.org/perldoc?HTTP::MobileAgent).
34
35# AUTHORS
36
37  Tokuhiro Matsuno  C<< <tokuhiro __at__ mobilefactory.jp> >>
38  Jiro Nishiguchi
39
40# THANKS TO
41
42  Tatsuhiko Miyagawa
43  Masayoshi Sekimura
44  HIROSE, Masaaki
45
46# SEE ALSO
47
48[http://d.hatena.ne.jp/spiritloose/20061010/1160471510](http://d.hatena.ne.jp/spiritloose/20061010/1160471510)
49
50# COPYRIGHT
51
52This program is free software; you can redistribute
53it and/or modify it under the same terms as Perl itself.
54
55The full text of the license can be found in the
56LICENSE file included with this module.