The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

HTTP::Session::State::MobileAttributeID - Maintain session IDs using mobile phone's unique id

SYNOPSIS

    use HTTP::Session::State::MobileAttribute;
    use HTTP::Session;

    HTTP::Session->new(
        state => HTTP::Session::State::MobileAttributeID->new(
            mobile_attribute => HTTP::MobileAttribute->new($r),
        ),
        store => ...,
        request => ...,
    );

DESCRIPTION

Maintain session IDs using mobile phone's unique id

THIS MODULE MAKES SECURITY HOLE. TAKE CAREFULLY..

CONFIGURATION

mobile_attribute

instance of HTTP::MobileAttribute

check_ip

check the IP address in the carrier's cidr/ or not? see also Net::CIDR::MobileJP

METHODS

get_session_id
response_filter

for internal use only

AUTHOR

Tokuhiro Matsuno <tokuhirom AAJKLFJEF GMAIL COM>

SEE ALSO

HTTP::Session, HTTP::MobileAttribute, http://www.hash-c.co.jp/info/2010052401.html

LICENSE

Copyright (C) Tokuhiro Matsuno

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