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

..03-May-2022-

inc/H11-Aug-2011-2,3591,768

lib/HTTP/Session/State/H11-Aug-2011-11244

t/H11-Aug-2011-272260

xt/H11-Aug-2011-5147

.gitignoreH A D11-Aug-201147 87

ChangesH A D11-Aug-2011516 3418

MANIFESTH A D11-Aug-2011554 2625

META.ymlH A D11-Aug-2011709 3231

Makefile.PLH A D11-Aug-2011472 1713

README.mkdnH A D11-Aug-20111.2 KiB4929

README.mkdn

1# NAME
2
3HTTP::Session::State::MobileAgentID - Maintain session IDs using mobile phone's unique id
4
5# SYNOPSIS
6
7    HTTP::Session->new(
8        state => HTTP::Session::State::MobileAgentID->new(
9            mobile_agent => HTTP::MobileAgent->new($r),
10        ),
11        store => ...,
12        request => ...,
13    );
14
15# DESCRIPTION
16
17Maintain session IDs using mobile phone's unique id
18
19# CONFIGURATION
20
21- mobile_agent
22
23instance of [HTTP::MobileAgent](http://search.cpan.org/perldoc?HTTP::MobileAgent)
24
25- check_ip
26
27check the IP address in the carrier's cidr/ or not?
28see also [Net::CIDR::MobileJP](http://search.cpan.org/perldoc?Net::CIDR::MobileJP)
29
30- cidr
31
32The object have __get_carrier($ip)__ method like [Net::CIDR::MobileJP](http://search.cpan.org/perldoc?Net::CIDR::MobileJP).
33
34If not provided to constructor, this class create new instance of Net::CIDR::MobileJP automatically.
35
36# AUTHOR
37
38Tokuhiro Matsuno <tokuhirom AAJKLFJEF GMAIL COM>
39
40# SEE ALSO
41
42[HTTP::MobileAgent](http://search.cpan.org/perldoc?HTTP::MobileAgent), [HTTP::Session](http://search.cpan.org/perldoc?HTTP::Session)
43
44# LICENSE
45
46Copyright (C) Tokuhiro Matsuno
47
48This library is free software; you can redistribute it and/or modify
49it under the same terms as Perl itself.