Compare commits

...

4 Commits

Author SHA1 Message Date
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
4 changed files with 5 additions and 5 deletions
+1
View File
@@ -45,3 +45,4 @@ d55c479666ac6be0575fac695ddf355c0530e0dd ns-3.6
17bf6ee332baaa6b6f9b8a26d29c98f4e715648f ns-3.7-RC4
be3fb855c65a46d22a7693cd156f154f63602e8e ns-3.7
e61ce382fcdd5363a9d0052601c5eeae6f5e8d81 ns-3.8-RC1
3b7ec0d36079b22fbc8c0d86b8edb876bf0ae9d8 ns-3.8-RC2
+2 -4
View File
@@ -24,10 +24,6 @@ ns-3.8 has been tested on the following platforms:
- 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)
Not all ns-3 options are available on all platforms; consult the
wiki for more information:
http://www.nsnam.org/wiki/index.php/Installation
@@ -138,8 +134,10 @@ 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 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
@@ -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);
}