diff options
Diffstat (limited to 'lib/network/connection/providers/cellular.pm')
-rw-r--r-- | lib/network/connection/providers/cellular.pm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/network/connection/providers/cellular.pm b/lib/network/connection/providers/cellular.pm new file mode 100644 index 0000000..ef630b4 --- /dev/null +++ b/lib/network/connection/providers/cellular.pm @@ -0,0 +1,28 @@ +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 Grand Public" => { + apn => "orange.fr", + login => "orange", + password => "orange", + }, + N("France") . "|Orange Entreprises" => { + apn => "internet-entreprise", + login => "orange", + password => "orange", + }, + N("France") . "|SFR" => { + apn => "websfr", + }, +); + +1; |