Update from Paul Ionescu to set the reported length of the tvbuff for
[obnox/wireshark/wip.git] / TODO
1 $Id: TODO,v 1.8 2000/08/25 20:50:31 guy Exp $
2
3 Things to do:
4 =============
5
6 *) Protocol dispatchers, allowing run-time setting of protocol "chaining"
7 (i.e., UDP port X calls dissector Y)
8
9 *) Work on packet capturing in wiretap
10
11 *) Either as part of the previous item, or as a capture-filter
12 translator that generates "libpcap"-style capture filter expressions,
13 provide a capture filter syntax similar to the display filter syntax. 
14 (The syntax differences get in the way of users; the fact that you have
15 to construct some filters by hand, e.g.  looking only for initial SYN
16 packets for TCP connections by doing bit-testing of the flags in a TCP
17 header has been a pain for some users; and people have asked for
18 capabilities that aren't conveniently available, or aren't available at
19 all, in "libpcap"-style capture filters:
20
21         the ability to filter on characteristics of IPX packets;
22
23         the ability to select, for example, TCP packets with port
24         numbers *greater than* a particular value, which in "libpcap"
25         filters you have to do by explicitly testing subfields of the
26         TCP header rather than doing "tcp.port > 1000";
27
28         etc.)
29
30 *) I just discovered that sshd sets the SSH_CLIENT variable to source IP,
31 sort port, and destination port. That coupled with a destination IP
32 would give us enough information to carry out remote protocol capturing,
33 tcpdump over ssh:
34
35         ssh remotehost tcpdump -s 2000 -w - filter,
36
37 where "filter" filters out our own ssh packets (using the infromation
38 from $SSH_CLIENT). Any takers?
39
40 *) Of course, packet defragmentating. IP, TCP, UDP, etc. need to be
41 reassembled and re-analyzed.
42
43 *) I'd like to someday re-write the display filter routines to have a more
44 powerful syntax.
45
46 *) More on-line help, and neato things with the protocol tree and
47 right-clicks.
48
49 *) A GtkClist replacement, with dynamic columns, allowing columns to be
50 added, removed, or moved without having to exit and restart Ethereal.
51 (guy)
52
53 *) A GUI capture/display filter creator.
54
55 *) Run-time configuration of tunnelling protocols -- display tunnelled
56 protocol as data or as a full-fledged protocol (which subtree do we put
57 it under?)
58
59 *) Run-time configuration of data shown in capture statistics window.
60
61 *) A GtkWidget for authors in the About box. We've got a lot of authors!
62 We've currently banished the list of authors to the AUTHORS file and the
63 man page, which may be the right solution here.
64
65 *) Finish moving GTK-dependent code into gtk/ subdirectory.
66
67 *) Provide alternative user interfaces, e.g. other toolkits (Qt/KDE,
68 full GNOME, native Windows, etc.) and text-mode "curses".
69
70 *) Kerberos version 4 dissector - standard krb4 - from tcpdump (nneul);
71 we have krb5, but not krb4
72
73 *) Display filters: allow filtering on "enumerated" data types by name,
74 i.e. if a field has a "value_string" array associated with it, allow
75 users to specify the string associated with a value.
76
77 *) Display filters: add regexes to strings and byte ranges