summaryrefslogtreecommitdiff
authorbenmeyer <benmeyer>2003-03-25 18:31:38 (UTC)
committer benmeyer <benmeyer>2003-03-25 18:31:38 (UTC)
commit07919cfafda8a4f6fd898454795735cc26a49151 (patch) (side-by-side diff)
tree11cf1d3b44b5ef81406d77caa792ca2877d88db0
parent9fc08b5b81e99da757cdad938871a3f2b1ca81fe (diff)
downloadopie-07919cfafda8a4f6fd898454795735cc26a49151.zip
opie-07919cfafda8a4f6fd898454795735cc26a49151.tar.gz
opie-07919cfafda8a4f6fd898454795735cc26a49151.tar.bz2
updates
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/TODO14
1 files changed, 14 insertions, 0 deletions
diff --git a/noncore/settings/networksettings/TODO b/noncore/settings/networksettings/TODO
index 6457836..9bde0dd 100644
--- a/noncore/settings/networksettings/TODO
+++ b/noncore/settings/networksettings/TODO
@@ -1,75 +1,89 @@
Types:
-Ethernet Connection (Done)
-ISDN Connection
-Modem COnnection (Started)
-xDSL connection
-Token Ring Connection
-CIPE (VPN) connection (ipsec?)
-Wireless Connection (Done)
-Bluetooth
-IPChains?
+When entering the wep keys, I think we should be able to see what we are typing, but not to show the keys when the field is not in focus. Otherwise, it's real hard to know if you typed the right wep key, and you have to look in the actual wireless.opts file to really know if you did it right.
+
+When Zaurus is in cradle, USB interface is connected and reported as UP by the Network Setting application, clicking on Information button does not popup a window. It used to work before, but now it's broken in the latest feed...
+
+-30-second pause closing NetSetting's Configure screen
+
+-Default Network Type for 802.11b should be Infrastructure
+
+-After configuring NetworkSettings for the first time, the WEP key fails to
+be iwconfig'd to the eth0 interface (Symbol 802.11b card on my Z).
+
+-Z hangs on PCMCIA-eject of Symbol 802.11b card (card seems to be in an odd
+state after first boot following reflash; see Additional Info)
+
test WEP
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
PPP module needs to scan pppd.tdb to see what is currently active
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
#include <asm/types.h>
#include <sys/socket.h>
#include <linux/netlink.h>
#include <linux/rtnetlink.h>
int main(int argc, char **argv)
{
int fd;
unsigned char buf[4096];
int ret;
int i, j;
struct sockaddr_nl snl;
fd = socket(AF_NETLINK, SOCK_DGRAM, NETLINK_ROUTE);
if (fd < 0) {
perror("socket");
exit(1);
}
snl.nl_family = AF_NETLINK;
snl.nl_pad = 0;
snl.nl_pid = getpid();
snl.nl_groups = RTM_NEWLINK|RTM_DELLINK;
if (bind(fd, &snl, sizeof(snl)) < 0) {