-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
114 lines (93 loc) · 3.12 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
Release 0.10.0 (2006-XX-XX)
-------------
This release features:
- optimization work on Packet and Buffer
implementation
- optimize Tag API.
Release 0.9.0 (2006-05-20)
-------------
This release features:
- initial work on MAC NQAP/NQSTA support
- Callback re-implementation
- Buffer API re-organization and optimization
- NetworkInterface API split in MacNetworkInterface
and Ipv4NetworkInterface
- overall code cleanups to decrease coupling between
various components.
- add a new std::map-based scheduler
- rework the schedulers to ensure proper event replay
whichever scheduling algorithm is choosen.
- add log and replay capability to the schedulers.
Release 0.8.0 (2006-03-24)
-------------
This release features:
- MAC DCF 802.11 support
- improvements to the makefile dependency tracking
- make it clear which headers are part of the public API
- re-organize the source tree
Release 0.7.2 (2006-03-10)
-------------
This release is a bugfix-only release for
the ethernet support:
- fix crasher in PeriodicGenerator
- fix crasher in Ethernet model
- fix previous release' NEWS item
Release 0.7.1 (2006-03-09)
-------------
This release is a bugfix-only release:
- build fixes for suse 9
- build fixes for linux gcc 4.1.0
- build fixes for osx
- remove gsl dependency
- add ideal 802.11 rate control algorithm
- deal with event environment lifecycle issues
- fix memory leaks
Release 0.7 (2006-02-24)
-----------
This release features:
- a way to unschedule scheduled events. i.e.: Simulator::remove
- a way to cancel otherwise events. i.e.: a CancellableEvent class
- a Binary Heap event scheduler
- a 802.11 PHY layer which implements a BER-based model. A very
simple MAC was written to test this PHY.
Release 0.6 (2006-02-02)
-----------
This release features:
- improved python binding
- build fixes for older libcs
- tracing/packet logging facility
- Makefile improvements
Release 0.4 (2006-24-01)
-----------
This release features:
- a new packet/buffer/chunk API
- optimized libpcap support (2x improvement on most simulations)
- ppc darwin support
Release 0.3 (2006-05-01)
-----------
This release features:
- working ipv4 forwarding (lots of bugfixes)
- ipv4 fragmentation/defragmentation
- a port of the bsd 4.4 tcp stack.
- large number of cleanups to the API.
- a reworked libpcap dump support to deal with
tcp checksums.
- a reworked framework for POSIX support.
- the start of a set of python bindings.
Release 0.2
-----------
This release features:
- ipv4 forwarding
- preliminary icmp support
Release 0.1
-----------
This release features:
- a UDP/IPv4 stack without multicast
- a nice packet API
- a complete arp module
- an empty ethernet module which uses the arp module to perform address
translation between IPv4 addresses and MAC addresses.
- libpcap dump support at the network interface level
- a sample application with a simple udp source and sink pair.
- the framework to provide a POSIX environment (this is far from the
real thing for now).