diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-04-08 09:57:51 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-04-08 09:57:51 +0000 |
commit | 8d62e6483e033c7581bb7f412db8101b1ebaec14 (patch) | |
tree | 5165a0fd7fb5e77a8944149cc8952fa8d0150c43 /perl-install/network/netconnect.pm | |
parent | 2c8fb8745cad97b33e98c4593bf540c02ecde6bc (diff) | |
download | drakx-8d62e6483e033c7581bb7f412db8101b1ebaec14.tar drakx-8d62e6483e033c7581bb7f412db8101b1ebaec14.tar.gz drakx-8d62e6483e033c7581bb7f412db8101b1ebaec14.tar.bz2 drakx-8d62e6483e033c7581bb7f412db8101b1ebaec14.tar.xz drakx-8d62e6483e033c7581bb7f412db8101b1ebaec14.zip |
add some comments for post 10.2
Diffstat (limited to 'perl-install/network/netconnect.pm')
-rw-r--r-- | perl-install/network/netconnect.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index 4de95a64b..fe4fc97fb 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -919,6 +919,7 @@ If you do not know, choose 'use PPPoE'"), { label => N("Account Login (user name)"), val => \$netcnx->{login} }, { label => N("Account Password"), val => \$netcnx->{passwd}, hidden => 1 }, if_($adsl_type ne "capi", + #- FIXME: take the VPI/VCI settings as decimal, not hex { label => N("Virtual Path ID (VPI):"), val => \$netc->{vpi}, advanced => 1 }, { label => N("Virtual Circuit ID (VCI):"), val => \$netc->{vci}, advanced => 1 } ), @@ -930,6 +931,7 @@ If you do not know, choose 'use PPPoE'"), ]; }, post => sub { + #- FIXME: update ATMADDR $netc->{internet_cnx_choice} = 'adsl'; network::adsl::adsl_conf_backend($in, $modules_conf, $netcnx, $netc, $intf, $ntf_name, $adsl_type, $netcnx); #FIXME $config->{adsl} = { kind => $ntf_name, protocol => $adsl_type }; |