-rw-r--r-- | noncore/net/networksetup/TODO | 26 | ||||
-rw-r--r-- | noncore/net/networksetup/mainwindow.ui | 2 | ||||
-rw-r--r-- | noncore/net/networksetup/opie-networksetup.control | 2 | ||||
-rw-r--r-- | noncore/net/networksetup/wlan/wlanimp.cpp | 3 | ||||
-rw-r--r-- | noncore/settings/networksettings/TODO | 26 | ||||
-rw-r--r-- | noncore/settings/networksettings/mainwindow.ui | 2 | ||||
-rw-r--r-- | noncore/settings/networksettings/opie-networksettings.control | 2 | ||||
-rw-r--r-- | noncore/settings/networksettings/opie-networksetup.control | 2 | ||||
-rw-r--r-- | noncore/settings/networksettings/wlan/wlanimp.cpp | 3 |
9 files changed, 53 insertions, 15 deletions
diff --git a/noncore/net/networksetup/TODO b/noncore/net/networksetup/TODO index 93cbab7..6457836 100644 --- a/noncore/net/networksetup/TODO +++ b/noncore/net/networksetup/TODO | |||
@@ -1,6 +1,16 @@ | |||
1 | Types: | ||
2 | -Ethernet Connection (Done) | ||
3 | -ISDN Connection | ||
4 | -Modem COnnection (Started) | ||
5 | -xDSL connection | ||
6 | -Token Ring Connection | ||
7 | -CIPE (VPN) connection (ipsec?) | ||
8 | -Wireless Connection (Done) | ||
9 | -Bluetooth | ||
10 | -IPChains? | ||
11 | |||
1 | test WEP | 12 | test WEP |
2 | WEP key in file wireless.conf is not encrypted !, therefore it is very easy to get the key out of the zaurus.. | 13 | Add WEP transimtion rate |
3 | WEP transimtion rat | ||
4 | 1 or 2 | 14 | 1 or 2 |
5 | 5.5 | 15 | 5.5 |
6 | 1 | 16 | 1 |
@@ -10,14 +20,20 @@ udchcp needs to output the dhcp information so interfaces can read it | |||
10 | 20 | ||
11 | interfacesetupimp really doesn't need a interface* pointer | 21 | interfacesetupimp really doesn't need a interface* pointer |
12 | 22 | ||
13 | Possible other modules to write: ppp, ipsec, bluetooth, ipchains | ||
14 | |||
15 | PPP module needs to scan pppd.tdb to see what is currently active | 23 | PPP module needs to scan pppd.tdb to see what is currently active |
16 | 24 | ||
17 | WLAN - add possiblity to input text or hex without knowing "s:" | 25 | WLAN |
26 | - add possiblity to input text or hex without knowing "s:" | ||
27 | - Handle "any" and any the same way in config | ||
18 | 28 | ||
19 | Interface setupimp needs to use kernel calls. | 29 | Interface setupimp needs to use kernel calls. |
20 | 30 | ||
31 | Add a route/DNS editor under the ViewAdvancedInfo button | ||
32 | |||
33 | Use a true TCP/IP widget | ||
34 | |||
35 | Make it so that pcmcia doesn't need to be stopped/started for wlan | ||
36 | |||
21 | Automaticly update the main list of interfaces: | 37 | Automaticly update the main list of interfaces: |
22 | > That would be me. :-D netlink, can you point me in the right | 38 | > That would be me. :-D netlink, can you point me in the right |
23 | > direction where I can get more info on it? (I figured there was some | 39 | > direction where I can get more info on it? (I figured there was some |
diff --git a/noncore/net/networksetup/mainwindow.ui b/noncore/net/networksetup/mainwindow.ui index 3d30994..dcabc52 100644 --- a/noncore/net/networksetup/mainwindow.ui +++ b/noncore/net/networksetup/mainwindow.ui | |||
@@ -17,7 +17,7 @@ | |||
17 | </property> | 17 | </property> |
18 | <property stdset="1"> | 18 | <property stdset="1"> |
19 | <name>caption</name> | 19 | <name>caption</name> |
20 | <string>Network Setup</string> | 20 | <string>Network Settings</string> |
21 | </property> | 21 | </property> |
22 | <vbox> | 22 | <vbox> |
23 | <property stdset="1"> | 23 | <property stdset="1"> |
diff --git a/noncore/net/networksetup/opie-networksetup.control b/noncore/net/networksetup/opie-networksetup.control index 3d6a32c..585e50e 100644 --- a/noncore/net/networksetup/opie-networksetup.control +++ b/noncore/net/networksetup/opie-networksetup.control | |||
@@ -5,4 +5,4 @@ Maintainer: Ben Meyer <meyerb@sharpsec.com> | |||
5 | Architecture: arm | 5 | Architecture: arm |
6 | Version: $QPE_VERSION-$SUB_VERSION | 6 | Version: $QPE_VERSION-$SUB_VERSION |
7 | Depends: opie-base ($QPE_VERSION) | 7 | Depends: opie-base ($QPE_VERSION) |
8 | Description: Opie network setup tool | 8 | Description: Network settings |
diff --git a/noncore/net/networksetup/wlan/wlanimp.cpp b/noncore/net/networksetup/wlan/wlanimp.cpp index 648932f..1782c22 100644 --- a/noncore/net/networksetup/wlan/wlanimp.cpp +++ b/noncore/net/networksetup/wlan/wlanimp.cpp | |||
@@ -231,6 +231,9 @@ void WLANImp::accept(){ | |||
231 | initpath = "/etc/rc.d/init.d"; | 231 | initpath = "/etc/rc.d/init.d"; |
232 | else if( QDir("/etc/init.d").exists() ) | 232 | else if( QDir("/etc/init.d").exists() ) |
233 | initpath = "/etc/init.d"; | 233 | initpath = "/etc/init.d"; |
234 | |||
235 | // It would be kinda cool if we didn't have to do this and could just to ifup/down | ||
236 | |||
234 | if( initpath ) | 237 | if( initpath ) |
235 | system(QString("%1/pcmcia stop").arg(initpath)); | 238 | system(QString("%1/pcmcia stop").arg(initpath)); |
236 | if( initpath ) | 239 | if( initpath ) |
diff --git a/noncore/settings/networksettings/TODO b/noncore/settings/networksettings/TODO index 93cbab7..6457836 100644 --- a/noncore/settings/networksettings/TODO +++ b/noncore/settings/networksettings/TODO | |||
@@ -1,6 +1,16 @@ | |||
1 | Types: | ||
2 | -Ethernet Connection (Done) | ||
3 | -ISDN Connection | ||
4 | -Modem COnnection (Started) | ||
5 | -xDSL connection | ||
6 | -Token Ring Connection | ||
7 | -CIPE (VPN) connection (ipsec?) | ||
8 | -Wireless Connection (Done) | ||
9 | -Bluetooth | ||
10 | -IPChains? | ||
11 | |||
1 | test WEP | 12 | test WEP |
2 | WEP key in file wireless.conf is not encrypted !, therefore it is very easy to get the key out of the zaurus.. | 13 | Add WEP transimtion rate |
3 | WEP transimtion rat | ||
4 | 1 or 2 | 14 | 1 or 2 |
5 | 5.5 | 15 | 5.5 |
6 | 1 | 16 | 1 |
@@ -10,14 +20,20 @@ udchcp needs to output the dhcp information so interfaces can read it | |||
10 | 20 | ||
11 | interfacesetupimp really doesn't need a interface* pointer | 21 | interfacesetupimp really doesn't need a interface* pointer |
12 | 22 | ||
13 | Possible other modules to write: ppp, ipsec, bluetooth, ipchains | ||
14 | |||
15 | PPP module needs to scan pppd.tdb to see what is currently active | 23 | PPP module needs to scan pppd.tdb to see what is currently active |
16 | 24 | ||
17 | WLAN - add possiblity to input text or hex without knowing "s:" | 25 | WLAN |
26 | - add possiblity to input text or hex without knowing "s:" | ||
27 | - Handle "any" and any the same way in config | ||
18 | 28 | ||
19 | Interface setupimp needs to use kernel calls. | 29 | Interface setupimp needs to use kernel calls. |
20 | 30 | ||
31 | Add a route/DNS editor under the ViewAdvancedInfo button | ||
32 | |||
33 | Use a true TCP/IP widget | ||
34 | |||
35 | Make it so that pcmcia doesn't need to be stopped/started for wlan | ||
36 | |||
21 | Automaticly update the main list of interfaces: | 37 | Automaticly update the main list of interfaces: |
22 | > That would be me. :-D netlink, can you point me in the right | 38 | > That would be me. :-D netlink, can you point me in the right |
23 | > direction where I can get more info on it? (I figured there was some | 39 | > direction where I can get more info on it? (I figured there was some |
diff --git a/noncore/settings/networksettings/mainwindow.ui b/noncore/settings/networksettings/mainwindow.ui index 3d30994..dcabc52 100644 --- a/noncore/settings/networksettings/mainwindow.ui +++ b/noncore/settings/networksettings/mainwindow.ui | |||
@@ -17,7 +17,7 @@ | |||
17 | </property> | 17 | </property> |
18 | <property stdset="1"> | 18 | <property stdset="1"> |
19 | <name>caption</name> | 19 | <name>caption</name> |
20 | <string>Network Setup</string> | 20 | <string>Network Settings</string> |
21 | </property> | 21 | </property> |
22 | <vbox> | 22 | <vbox> |
23 | <property stdset="1"> | 23 | <property stdset="1"> |
diff --git a/noncore/settings/networksettings/opie-networksettings.control b/noncore/settings/networksettings/opie-networksettings.control index 3d6a32c..585e50e 100644 --- a/noncore/settings/networksettings/opie-networksettings.control +++ b/noncore/settings/networksettings/opie-networksettings.control | |||
@@ -5,4 +5,4 @@ Maintainer: Ben Meyer <meyerb@sharpsec.com> | |||
5 | Architecture: arm | 5 | Architecture: arm |
6 | Version: $QPE_VERSION-$SUB_VERSION | 6 | Version: $QPE_VERSION-$SUB_VERSION |
7 | Depends: opie-base ($QPE_VERSION) | 7 | Depends: opie-base ($QPE_VERSION) |
8 | Description: Opie network setup tool | 8 | Description: Network settings |
diff --git a/noncore/settings/networksettings/opie-networksetup.control b/noncore/settings/networksettings/opie-networksetup.control index 3d6a32c..585e50e 100644 --- a/noncore/settings/networksettings/opie-networksetup.control +++ b/noncore/settings/networksettings/opie-networksetup.control | |||
@@ -5,4 +5,4 @@ Maintainer: Ben Meyer <meyerb@sharpsec.com> | |||
5 | Architecture: arm | 5 | Architecture: arm |
6 | Version: $QPE_VERSION-$SUB_VERSION | 6 | Version: $QPE_VERSION-$SUB_VERSION |
7 | Depends: opie-base ($QPE_VERSION) | 7 | Depends: opie-base ($QPE_VERSION) |
8 | Description: Opie network setup tool | 8 | Description: Network settings |
diff --git a/noncore/settings/networksettings/wlan/wlanimp.cpp b/noncore/settings/networksettings/wlan/wlanimp.cpp index 648932f..1782c22 100644 --- a/noncore/settings/networksettings/wlan/wlanimp.cpp +++ b/noncore/settings/networksettings/wlan/wlanimp.cpp | |||
@@ -231,6 +231,9 @@ void WLANImp::accept(){ | |||
231 | initpath = "/etc/rc.d/init.d"; | 231 | initpath = "/etc/rc.d/init.d"; |
232 | else if( QDir("/etc/init.d").exists() ) | 232 | else if( QDir("/etc/init.d").exists() ) |
233 | initpath = "/etc/init.d"; | 233 | initpath = "/etc/init.d"; |
234 | |||
235 | // It would be kinda cool if we didn't have to do this and could just to ifup/down | ||
236 | |||
234 | if( initpath ) | 237 | if( initpath ) |
235 | system(QString("%1/pcmcia stop").arg(initpath)); | 238 | system(QString("%1/pcmcia stop").arg(initpath)); |
236 | if( initpath ) | 239 | if( initpath ) |