Create a global TODO file

Most of the local TODO files are merged into the new root TODO.
This commit is contained in:
Matteo Cypriani 2011-03-10 20:55:31 +01:00
parent fe3c509831
commit 7c80f17b0b
6 changed files with 69 additions and 17 deletions

69
TODO Normal file
View File

@ -0,0 +1,69 @@
* Global
- Fix endianess issues
Check carefully the network exchanges to track every non-conversion
of endianess.
- Mark arguments as const in function headers if needed
That is done in the owlps-positioning C++ code, but not constantly
in C modules.
- Allow to use hostnames instead of IP addresses.
* libowlps
- Prefix all function with "owlps_".
* Aggregator
- Use locks to read/write the AP list
Currently, several threads can access the list simultaneously, and
that's not cool!
- Allow blank parameters for output options.
- Fix segfault on SIGINT.
* Listener
- read_packet(): use ieee80211_header_size for all implicit packets
Currently the size is corrected only for data packets.
- Fix segfault when rtap_iface is not in monitor mode (?) on Foneras.
- Merge Makefile and Makefile_atheros?
Use autohell?
- Use positive (USE_CONFUSE) and negative (NO_USE_PTHREAD) options?
The default options could be modified, but that's not so important,
is it?
* libowlps-client
- Rename owlps_create_socket_to_aggregator()
This function should be renamed, since it allows (and it is used)
to open sockets to other hosts than the aggregator.
* Client
- Check the direction
The direction provided by the user should be one of the four
possible values.
- Allow to use a string for the direction
Could be nice, but probably useless.
* Positioning
- Has its own fat TODO file, which I should translate.
* writeInDb
- Do something about that
° Merge in owlps-positioning?
° Delete?
* mobile-centred
- Has its own TODO file.
- Maybe we should delete that.

View File

@ -1,2 +0,0 @@
* Un peu partout : fixer la taille des données échangées (float = 4 octets, etc.).
* Vérifier s'il ne manque pas des hton/ntoh (faire des essais).

View File

@ -1,2 +0,0 @@
* Rename owlps_create_socket_to_aggregator, since it allows (and it is
used) to open sockets to other hosts than the aggregator.

View File

@ -1,2 +0,0 @@
* Poser des verrous pour la lecture/écriture de la liste des AP (plusieurs threads concurrents).
* Choisir les interfaces en fonction des paramètres spécifiés (permettre des paramètres vides).

View File

@ -1,2 +0,0 @@
* Vérifier que la direction est bien une des quatre possibles.
* Éventuellement, permettre l'utilisation d'une chaîne de caractères pour la direction.

View File

@ -1,9 +0,0 @@
* read_packet(): use ieee80211_header_size for all implicit packets
(currently the size is corrected only for data packets).
* Fix segfault when rtap_iface is not in monitor mode (?) on Foneras.
* Fusionner Makefile et Makefile_atheros.
* Éventuellement remplacer les options positives (USE_PTHREAD) par des
options négatives (NO_USE_PTHREAD), en fonction des valeurs par
défaut.
* Permettre d'utiliser un nom d'hôte putôt qu'une IP pour le serveur
d'agrégation.