summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/networksetup/TODO26
-rw-r--r--noncore/net/networksetup/mainwindow.ui2
-rw-r--r--noncore/net/networksetup/opie-networksetup.control2
-rw-r--r--noncore/net/networksetup/wlan/wlanimp.cpp3
-rw-r--r--noncore/settings/networksettings/TODO26
-rw-r--r--noncore/settings/networksettings/mainwindow.ui2
-rw-r--r--noncore/settings/networksettings/opie-networksettings.control2
-rw-r--r--noncore/settings/networksettings/opie-networksetup.control2
-rw-r--r--noncore/settings/networksettings/wlan/wlanimp.cpp3
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,32 +1,48 @@
+Types:
+-Ethernet Connection (Done)
+-ISDN Connection
+-Modem COnnection (Started)
+-xDSL connection
+-Token Ring Connection
+-CIPE (VPN) connection (ipsec?)
+-Wireless Connection (Done)
+-Bluetooth
+-IPChains?
+
test WEP
-WEP key in file wireless.conf is not encrypted !, therefore it is very easy to get the key out of the zaurus..
-WEP transimtion rat
+Add WEP transimtion rate
1 or 2
5.5
1
Auto
udchcp needs to output the dhcp information so interfaces can read it
interfacesetupimp really doesn't need a interface* pointer
-Possible other modules to write: ppp, ipsec, bluetooth, ipchains
-
PPP module needs to scan pppd.tdb to see what is currently active
-WLAN - add possiblity to input text or hex without knowing "s:"
+WLAN
+- add possiblity to input text or hex without knowing "s:"
+- Handle "any" and any the same way in config
Interface setupimp needs to use kernel calls.
+Add a route/DNS editor under the ViewAdvancedInfo button
+
+Use a true TCP/IP widget
+
+Make it so that pcmcia doesn't need to be stopped/started for wlan
+
Automaticly update the main list of interfaces:
> That would be me. :-D netlink, can you point me in the right
> direction where I can get more info on it? (I figured there was some
> kenel call)
You can look up the meaning of the packets you receive, or you can just go
poll for changes you might be interested in each time you receive _any_
packet. Anything's better than periodic polling.
Note that you can't do this as non-root on some kernels. There's a patch
which can go into the hh.org kernel if it's not already there.
cf. http://marc.theaimsgroup.com/?l=linux-kernel&m=103520821605353&w=2
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
@@ -8,25 +8,25 @@
</property>
<property stdset="1">
<name>geometry</name>
<rect>
<x>0</x>
<y>0</y>
<width>240</width>
<height>289</height>
</rect>
</property>
<property stdset="1">
<name>caption</name>
- <string>Network Setup</string>
+ <string>Network Settings</string>
</property>
<vbox>
<property stdset="1">
<name>margin</name>
<number>0</number>
</property>
<property stdset="1">
<name>spacing</name>
<number>6</number>
</property>
<widget>
<class>QTabWidget</class>
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
@@ -1,8 +1,8 @@
Files: bin/networksetup apps/Settings/networksetup.desktop plugins/networksetup/* pics/networksetup/* pics/Network/PPPConnect.png $QTDIR/lib/libinterfaces.so.1.0.0 $QTDIR/lib/libinterfaces.so.1.0 $QTDIR/lib/libinterfaces.so.1 root/usr/bin/changedns bin/getprofile
Priority: optional
Section: opie/settings
Maintainer: Ben Meyer <meyerb@sharpsec.com>
Architecture: arm
Version: $QPE_VERSION-$SUB_VERSION
Depends: opie-base ($QPE_VERSION)
-Description: Opie network setup tool
+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
@@ -222,23 +222,26 @@ void WLANImp::accept(){
changeAndSaveSettingFile();
// Try to save the interfaces settings.
if(!interfaceSetup->saveChanges())
return;
// Restart the device now that the settings have changed
QString initpath;
if( QDir("/etc/rc.d/init.d").exists() )
initpath = "/etc/rc.d/init.d";
else if( QDir("/etc/init.d").exists() )
initpath = "/etc/init.d";
+
+ // It would be kinda cool if we didn't have to do this and could just to ifup/down
+
if( initpath )
system(QString("%1/pcmcia stop").arg(initpath));
if( initpath )
system(QString("%1/pcmcia start").arg(initpath));
// Close out the dialog
QDialog::accept();
}
// wlanimp.cpp
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,32 +1,48 @@
+Types:
+-Ethernet Connection (Done)
+-ISDN Connection
+-Modem COnnection (Started)
+-xDSL connection
+-Token Ring Connection
+-CIPE (VPN) connection (ipsec?)
+-Wireless Connection (Done)
+-Bluetooth
+-IPChains?
+
test WEP
-WEP key in file wireless.conf is not encrypted !, therefore it is very easy to get the key out of the zaurus..
-WEP transimtion rat
+Add WEP transimtion rate
1 or 2
5.5
1
Auto
udchcp needs to output the dhcp information so interfaces can read it
interfacesetupimp really doesn't need a interface* pointer
-Possible other modules to write: ppp, ipsec, bluetooth, ipchains
-
PPP module needs to scan pppd.tdb to see what is currently active
-WLAN - add possiblity to input text or hex without knowing "s:"
+WLAN
+- add possiblity to input text or hex without knowing "s:"
+- Handle "any" and any the same way in config
Interface setupimp needs to use kernel calls.
+Add a route/DNS editor under the ViewAdvancedInfo button
+
+Use a true TCP/IP widget
+
+Make it so that pcmcia doesn't need to be stopped/started for wlan
+
Automaticly update the main list of interfaces:
> That would be me. :-D netlink, can you point me in the right
> direction where I can get more info on it? (I figured there was some
> kenel call)
You can look up the meaning of the packets you receive, or you can just go
poll for changes you might be interested in each time you receive _any_
packet. Anything's better than periodic polling.
Note that you can't do this as non-root on some kernels. There's a patch
which can go into the hh.org kernel if it's not already there.
cf. http://marc.theaimsgroup.com/?l=linux-kernel&m=103520821605353&w=2
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
@@ -8,25 +8,25 @@
</property>
<property stdset="1">
<name>geometry</name>
<rect>
<x>0</x>
<y>0</y>
<width>240</width>
<height>289</height>
</rect>
</property>
<property stdset="1">
<name>caption</name>
- <string>Network Setup</string>
+ <string>Network Settings</string>
</property>
<vbox>
<property stdset="1">
<name>margin</name>
<number>0</number>
</property>
<property stdset="1">
<name>spacing</name>
<number>6</number>
</property>
<widget>
<class>QTabWidget</class>
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
@@ -1,8 +1,8 @@
Files: bin/networksetup apps/Settings/networksetup.desktop plugins/networksetup/* pics/networksetup/* pics/Network/PPPConnect.png $QTDIR/lib/libinterfaces.so.1.0.0 $QTDIR/lib/libinterfaces.so.1.0 $QTDIR/lib/libinterfaces.so.1 root/usr/bin/changedns bin/getprofile
Priority: optional
Section: opie/settings
Maintainer: Ben Meyer <meyerb@sharpsec.com>
Architecture: arm
Version: $QPE_VERSION-$SUB_VERSION
Depends: opie-base ($QPE_VERSION)
-Description: Opie network setup tool
+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
@@ -1,8 +1,8 @@
Files: bin/networksetup apps/Settings/networksetup.desktop plugins/networksetup/* pics/networksetup/* pics/Network/PPPConnect.png $QTDIR/lib/libinterfaces.so.1.0.0 $QTDIR/lib/libinterfaces.so.1.0 $QTDIR/lib/libinterfaces.so.1 root/usr/bin/changedns bin/getprofile
Priority: optional
Section: opie/settings
Maintainer: Ben Meyer <meyerb@sharpsec.com>
Architecture: arm
Version: $QPE_VERSION-$SUB_VERSION
Depends: opie-base ($QPE_VERSION)
-Description: Opie network setup tool
+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
@@ -222,23 +222,26 @@ void WLANImp::accept(){
changeAndSaveSettingFile();
// Try to save the interfaces settings.
if(!interfaceSetup->saveChanges())
return;
// Restart the device now that the settings have changed
QString initpath;
if( QDir("/etc/rc.d/init.d").exists() )
initpath = "/etc/rc.d/init.d";
else if( QDir("/etc/init.d").exists() )
initpath = "/etc/init.d";
+
+ // It would be kinda cool if we didn't have to do this and could just to ifup/down
+
if( initpath )
system(QString("%1/pcmcia stop").arg(initpath));
if( initpath )
system(QString("%1/pcmcia start").arg(initpath));
// Close out the dialog
QDialog::accept();
}
// wlanimp.cpp