Compare commits

...

8 Commits

Author SHA1 Message Date
Josh Pelkey b6172a4ec0 update release notes 2010-05-03 13:41:19 -04:00
Josh Pelkey 529680baab Added tag ns-3.8-RC4 for changeset 533be42b3c7f 2010-05-01 08:18:21 -04:00
Tom Henderson 1a580e3725 Bug 895 - SimpleOfdmWimaxPhy SNR computation 2010-04-30 13:10:23 -04:00
Josh Pelkey d1fbff8458 Added tag ns-3.8-RC3 for changeset d588e7fe6cb0 2010-04-28 16:21:23 -04:00
Josh Pelkey aea407bbb7 update bug list for release notes 2010-04-28 10:18:27 -04:00
Josh Pelkey 3c50c33fab Bug 888 - Writing ascii trace to addtional tests fails 2010-04-28 09:53:00 -04:00
Gustavo J. A. M. Carneiro 518e9f0461 Bug 899 - EmuNetDevice::SetPromiscReceiveCallback not implemented 2010-04-28 09:50:04 -04:00
Josh Pelkey 26ee2a0a29 Added tag ns-3.8-RC2 for changeset 3b7ec0d36079 2010-04-25 11:37:50 -04:00
5 changed files with 10 additions and 7 deletions
+3
View File
@@ -45,3 +45,6 @@ d55c479666ac6be0575fac695ddf355c0530e0dd ns-3.6
17bf6ee332baaa6b6f9b8a26d29c98f4e715648f ns-3.7-RC4
be3fb855c65a46d22a7693cd156f154f63602e8e ns-3.7
e61ce382fcdd5363a9d0052601c5eeae6f5e8d81 ns-3.8-RC1
3b7ec0d36079b22fbc8c0d86b8edb876bf0ae9d8 ns-3.8-RC2
d588e7fe6cb064919e2738e71e6169dc9be94e0b ns-3.8-RC3
533be42b3c7ff738d76517a9a6e48f1795f54844 ns-3.8-RC4
+4 -5
View File
@@ -22,11 +22,7 @@ ns-3.8 has been tested on the following platforms:
- linux x86 gcc 4.4.0, 4.3.2, 4.2, 4.1.1, 4.1 and 3.4.6 (debug and optimized)
- linux x86_64 gcc 4.4.0, 4.3.2, 4.2.4, 4.2.3, 4.2.1, 4.1.3, 3.4.6 (debug and optimized)
- MacOS X ppc gcc 4.0.x and 4.2.x (debug and optimized)
- cygwin gcc 3.4.4 (debug only), gcc 4.3.2 (debug and optimized)
Unofficially supported platform
-------------------
- mingw gcc 3.4.5 (debug only)
- cygwin gcc 4.3.4 (debug and optimized)
Not all ns-3 options are available on all platforms; consult the
wiki for more information:
@@ -138,8 +134,11 @@ many cases referencing the Bugzilla bug number
- bug 877 - python bindings broken with multiple inheritance ?
- bug 880 - Node sending a packet to itself via 127.0.0.1 aborts
- bug 885 - Error in Ascii tracing in Python examples
- bug 888 - Writing ascii trace to addtional tests fails
- bug 891 - WiMAX device helper does not include propagation loss model by default
- bug 894 - ./waf --run error message upon segfault
- bug 895 - SimpleOfdmWimaxPhy SNR computation
- bug 899 - EmuNetDevice::SetPromiscReceiveCallback not implemented
Known issues
------------
+1 -1
View File
@@ -1052,7 +1052,7 @@ EmuNetDevice::IsBridge (void) const
void
EmuNetDevice::SetPromiscReceiveCallback (PromiscReceiveCallback cb)
{
NS_FATAL_ERROR ("EmuNetDevice::SetPromiscReceiveCallback(): Not implemented");
m_promiscRxCallback = cb;
}
bool
+1 -1
View File
@@ -333,7 +333,7 @@ SimpleOfdmWimaxPhy::StartReceive (const bvec &fecBlock,
UniformVariable URNG;
uint8_t drop = 0;
double Nwb = -114 + m_noiseFigure + 10 * log (GetBandwidth () / 1000000000) / 2.303;
double Nwb = -114 + m_noiseFigure + 10 * log (GetBandwidth () / 1000000000.0) / 2.303;
double SNR = rxPower - Nwb;
SNRToBlockErrorRateRecord * record = m_snrToBlockErrorRateManager->GetSNRToBlockErrorRateRecord (SNR, modulationType);
@@ -274,6 +274,7 @@ public:
Ns3TcpLossTestSuite::Ns3TcpLossTestSuite ()
: TestSuite ("ns3-tcp-loss", SYSTEM)
{
Packet::EnablePrinting (); // Enable packet metadata for all test cases
AddTestCase (new Ns3TcpLossTestCase1);
AddTestCase (new Ns3TcpLossTestCase2);
}