owlps/TODO

72 lines
2.3 KiB
Plaintext
Raw Permalink Normal View History

* Global
2011-07-29 22:26:38 +02:00
- Add option dump-configuration (displays the config & exits).
2011-05-03 13:53:33 +02:00
- Makefiles:
° Translate comments & help.
2011-07-29 22:26:38 +02:00
° Merge Makefile and Makefile_atheros*. Use template makefiles,
autohell, cmake…?
2011-03-16 16:53:55 +01:00
- Use string for network exchanges?
- Mark arguments as const in function headers if needed
2011-07-29 22:26:38 +02:00
Mostly done in the owlps-positioning C++ code (should check that),
but not constantly in C modules.
2011-06-08 10:56:14 +02:00
[Done in libowlps & libowlps-client.]
2011-04-07 10:18:06 +02:00
- Allow to use hostnames instead of IP addresses in all modules
getaddrinfo(3) (or gethostbyname(3)) should be used when opening
sockets in libowlps, then string buffer size have to be adapted in
all modules to be able to contain a long hostname.
- Use struct ether_addr to store MAC addresses?
We could use the struct ether_addr to store binary MAC addresses,
and convert them to strings with ether_ntoa() instead of
owl_mac_bytes_to_string(). See ether_aton(3).
* libowlps
2011-04-07 10:18:06 +02:00
- Currently unused functions:
° owl_timestamp_is_null()
* Aggregator
2011-07-29 22:26:38 +02:00
- -o should be optional.
- Add an option to (not) flush the output file.
- Refactor:
° monitor_requests()
° got_request()
2011-06-08 10:56:14 +02:00
- inet_ntoa() is not secure with threads
(But it is currently used by only one thread.) Use inet_ntop()
instead?
- Use the type of a request to identify it?
(along with the mobile MAC address and the request time)
- got_request(): option for the maximal difference time
2011-06-08 10:56:14 +02:00
For implicit packets, we consider that packets from the same MAC
and received within an interval of 10ms are part of the same
request. We should define an option to allow user to choose the
time he wants.
* Listener
2011-04-07 10:18:06 +02:00
- Refactor and review read_packet().
2011-07-29 22:26:38 +02:00
- Handle better the configuration file reading
Get rid of the "Cannot open configuration file" error, in quiet
mode and when the default configuration file has to be used (no
file specified by the user with -f).
2011-04-07 10:18:06 +02:00
- Listen for autocalibration requests without sending requests?
- read_packet(): use ieee80211_header_size for all implicit packets
Currently the size is corrected only for data packets.
* Client
2011-07-29 22:26:38 +02:00
- Handle signals.
- Add verbose & quiet options.
- Log sent requests?
2011-04-07 10:18:06 +02:00
- Allow to use a string for the direction?
Could be nice, but probably useless.
* Positioning
2011-07-29 22:26:38 +02:00
- Has its own fat TODO file, which I could merge in here.