]> sjero.net Git - dccp2tcp/blob - ChangeLog
Cleanup types throughout code
[dccp2tcp] / ChangeLog
1 11/29/2011
2         Release 1.5:
3         Improvements:
4         1)Multiple connection support and removal of source port != destination port restriction
5         2)Add warning about malformed ACK vectors
6         3)Speed up processing of connections with huge losses when running with debug enabled
7         Bug Fixes:
8         1)Length checks to ensure entire DCCP header is captured
9         2)Correct command line option processing to allow stdin as packet source. This enables processing of compressed
10                 captures using, for example, zcat.
11
12
13 05/25/2011:
14         Release 1.4:
15         Improvements:
16         1)Add double -s option to only show Ack Vectors/SACKS with loss events
17         Bug Fixes:
18         1)Increase maximum number of TCP SACK segments to 4 (instead of two)
19
20
21 05/15/2011:
22         Release 1.3
23         Improvements:
24         1)Complete Redesign of Encapsulation system. It now examines each protocol layer and removes encapsulation correctly.
25                 If a protocol is not supported, the packet is ignored. As of right now the supported protocols are:
26                  +Ethernet
27                  +Linux Cooked Capture (SLL)
28                  +IPv4
29
30         
31 02/01/2011:
32         Release 1.2
33         Bug Fixes:
34         1)Sequence number adjustments so that Tcptrace RTT graphing/statistics now work
35
36
37 01/19/2011:
38         Release 1.1
39         Bug Fixes:
40         1)Ack Vector computations were using one byte beyond the ack vector.
41         2)Ack Vector to SACK was using one byte beyond the ack vector.
42         Improvements:
43         1)All error output now goes to stderr
44         2)Multiple Debug Levels
45         3)Moved includes, struct defs, and some functions defs to a header file
46         New Features:
47         1)Sync and SyncAck packets now have zero data and zero window. This makes them show up more easily in Tcptrace
48
49
50 12/22/2010:
51         Release 1.0
52         Initial Public Release
53         Features:
54         1)Converts DCCP to TCP
55         2)Optional ack vectors to SACKS
56         3)Optional Window to highest ack
57         Bugs:
58         1)Supports only a single DCCP connection per capture.
59         2)Source Port can't equal Destination Port. If the two are equal, this program will get very confused.
60         3)DCCP MUST use 48 bit sequence numbers.
61         4)Checksums are not computed (they are zeroed).
62         5)Only converts those packet types used by the Linux implementation at this date
63         6)DCCP Ack packets show up as TCP packets containing one byte
64         7)Very little error checking of packet headers, it's research software afterall