summaryrefslogtreecommitdiffstats
path: root/lib/network/connection/providers/cellular.pm
blob: 6d2a70cf00ad66fc61544370163a6a96504bff60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package network::connection::providers::cellular;

use common;
use utf8;

# http://www.reqwireless.com/apns.html
# http://wiki.mig33.com/mig33/show/apn
# http://www.unlocks.co.uk/gprs_settings.php
# http://www.opera.com/products/smartphone/docs/connect/
# http://www.taniwha.org.uk/gprs.html

our %data = (
    N("France") . "|Orange Web" => {
        apn => "orange.fr",
        login => "orange",
        password => "orange",
    },
    # http://www.actua-mobiles.com/p800/viewtopic.php?p=12184#12184
    # http://www.planete-se.net/index.php?showtopic=18184&st=0&p=186768&#entry186768
    N("France") . "|Orange WAP" => {
        apn => "orange",
        login => "orange",
        password => "orange",
    },
    N("France") . "|Orange Entreprises" => {
        apn => "internet-entreprise",
        login => "orange",
        password => "orange",
    },
    N("France") . "|SFR" => {
        apn => "websfr",
    },
);

1;