Commit Graph

132 Commits

Author SHA1 Message Date
Dean Armstrong
ce8b512f0f Bug 1064: Correct Friis propagation loss equation
The FrissSpectrumPropagationLoss model doesn't implement Friis formula
correctly - the whole numerator needs to be squared, rather than just
the last term.
2011-03-01 16:58:05 +00:00
Tom Henderson
6f7c7a3859 bugfix: CsmaNetDevice ErrorModel not discarding packet (reported by Rafal Mielniczuk) 2011-01-26 09:53:49 -08:00
Tom Henderson
75a034d543 start RELEASE_NOTES for ns-3.11 2011-01-25 21:47:05 -08:00
Andrea Sacco
c5dc2d552c Fixed UanPhyGen::IsStateBusy method bug 2011-01-25 19:42:58 +01:00
Tom Henderson
e0d64d4320 Document cygwin limitation in RELEASE_NOTES 2011-01-03 15:53:55 -08:00
Tom Henderson
41e93b8ce4 update release notes and CHANGES.html file 2011-01-03 13:13:26 -08:00
Tom Henderson
36f9363b57 Update release notes 2010-12-31 08:55:52 -08:00
Tom Henderson
76ad7634ec update release notes and changes.html 2010-12-29 11:05:41 -08:00
Tom Henderson
6908fb3840 Update release notes and changelog 2010-12-23 12:40:48 -08:00
Hemanth Narra
079847d813 DSDV routing protocol 2010-12-21 22:43:06 -08:00
Andrea Sacco
f1e1c21bbe Energy support for UAN module and Li-Ion energy model 2010-12-21 21:44:11 -08:00
Tom Henderson
b792c83143 Update release notes 2010-12-20 22:05:44 -08:00
He Wu
372a9b6fe8 RV battery model and WiFi energy example 2010-12-20 15:49:12 -08:00
Josh Pelkey
40187d0511 Add BulkSendApplication 2010-12-16 20:24:14 -05:00
Tom Henderson
261b75a3ab Bring CHANGES.html and RELEASE_NOTES up to date 2010-12-08 14:19:44 -08:00
Dean Armstrong
0946a77009 Bug 978: Consolidate Wi-Fi MAC high functionality
This change reorganises the Wi-Fi MAC high classes in attempt to
reduce duplication of functionality that is required for more than one
of the MAC high models. A new class called RegularWifiMac has been
created. This derives from the abstract WifiMac, and is parent of
AdhocWifiMac, StaWifiMac, ApWifiMac, and MeshWifiInterfaceMac. The QoS
and non-QoS class variants are no longer, with a RegularWifiMac
attribute "QosSupported" allowing selection between these two modes of
operation. QosWifiMacHelper and NqosWifiMacHelper continue to work as
previously.

Updates to some regression traces are necessary because the
reorganisation has led to random number streams being initialised in
slightly different orders and thus over-the-air timing changing.
2010-12-02 07:51:34 +00:00
Tom Henderson
a9b910fd14 bug 1022: inappropriate ASSERT in tcp-socket-impl.cc 2010-11-17 16:17:35 -08:00
Tom Henderson
9ced8e59b8 bug 984: change EmuNetDevice encapsulation default to DIX 2010-11-12 11:54:45 -08:00
Hajime Tazaki
be7c2dfa01 Bug 1027 - RocketfuelTopologyReader is not working at all 2010-11-12 13:28:26 +09:00
Nicola Baldo
76daf64826 added fixed wifi bugs to release notes for ns-3.10 2010-11-09 13:06:30 +01:00
Nicola Baldo
35c1bf1578 added spectrum to release notes for ns-3.9 2010-11-09 12:56:50 +01:00
Tom Henderson
f7229b64f5 clarify the status of ./waf --regression removal 2010-11-08 11:36:26 -08:00
Tom Henderson
709d578f2d update RELEASE_NOTES 2010-10-05 01:33:25 -07:00
Dean Armstrong
f7980953d8 Bug 979: Update RELEASE_NOTES to indicate this is fixed 2010-09-03 09:56:51 +01:00
Dean Armstrong
fc769b5331 Bug 852: Update RELEASE_NOTES to note this new feature 2010-09-02 14:30:44 +01:00
Tom Henderson
de268675ab Start tracking ns-3.10 changes 2010-09-01 22:17:18 -07:00
Tom Henderson
b219ec3542 Final nits for 3.9 release 2010-08-20 08:16:36 -07:00
Josh Pelkey
48116a8fe3 update release notes 2010-08-16 13:43:36 -04:00
Josh Pelkey
70f4ccc0fc update release notes and fix doxygen warnings 2010-08-11 11:37:37 -04:00
Ken Renard
55e1e1e47a [bug 911] Ipv4 multicast forwarding not going to all output interfaces in route 2010-08-09 23:40:31 -07:00
Josh Pelkey
1681471d81 release notes and changes updates 2010-08-09 14:05:48 -04:00
Josh Pelkey
dbc8486cce add bug fixes to RELEASE_NOTES 2010-08-09 12:54:48 -04:00
Tom Henderson
051b0f3e2d Change default OFDM error rate model to NistErrorRateModel (issue 944) 2010-07-20 07:34:14 -07:00
Hajime Tazaki
b5b0d1900e Opps, Bug 671: correct valgrind error 2010-07-13 20:27:55 +09:00
He Wu
2d87e8d326 Initial import of energy model 2010-07-07 21:54:32 -07:00
Dean Armstrong
cc1141628e Bug 881: Update RELEASE_NOTES and CHANGES.html 2010-06-25 12:40:24 +01:00
Hajime Tazaki
b6093c6789 Bug 946 - Rocketfuel topology dataset support for topology reader 2010-06-23 18:16:45 +09:00
Martín Giachino
8af8a42b6a RELEASE_NOTES updated 2010-06-20 17:25:42 +04:00
Dean Armstrong
ebb9193ef9 Bug 871: Rework construction of Wi-Fi rates
This patch attempts to lay some groundwork for enhancements to the Wi-Fi module
by bringing the representation of transmit rates more in line with the
standard.

The key part of the patch is the introduction of a type that corresponds to the
notion of Modulation Class described in IEEE 802.11-2007, Section 9.6.1, Table
9-2.

It also adds coding rate information to the WifiModes and centralises their
construction into a single WifiModeFactory method. The rates are also renamed
with reference to their Modulation Class.

WifiModes no longer have a WifiStandard, but the latter type still exists and is
used to imply the set of WifiModes that a MAC/PHY pair will support.
2010-06-16 10:55:13 +01:00
Gary Pei
a1fd50d60e Add NistErrorRateModel for wifi 2010-06-15 10:28:51 -07:00
Hajime Tazaki
6ec5e6e526 update RELEASE_NOTES 2010-06-04 07:12:20 +09:00
Tom Henderson
125c0a51bd update RELEASE_NOTES 2010-05-30 20:54:25 -07:00
Antti Mäkelä
7e9e3826a2 bug 906: NSC TCP socket fork did not copy txbuffersize over 2010-05-29 14:04:03 -07:00
Tom Henderson
d5624122d1 bug 702: make global routing robust to link/device events 2010-05-24 10:52:58 -07:00
Tom Henderson
4db54edfe3 Update RELEASE_NOTES and CHANGES.html since ns-3.8 2010-05-16 15:24:53 -07:00
Tom Henderson
8c2c1596e2 bug 861: Log drop traces for forwarding failures into IPv4 and IPv6 ascii traces 2010-05-15 16:46:47 -07:00
Josh Pelkey
f4dfbaa8fc fix release notes 2010-05-04 09:32:02 -04:00
Josh Pelkey
b6172a4ec0 update release notes 2010-05-03 13:41:19 -04:00
Tom Henderson
1a580e3725 Bug 895 - SimpleOfdmWimaxPhy SNR computation 2010-04-30 13:10:23 -04:00
Josh Pelkey
aea407bbb7 update bug list for release notes 2010-04-28 10:18:27 -04:00