Compare commits
8 Commits
ns-3.8-RC2
...
ns-3.8
| Author | SHA1 | Date | |
|---|---|---|---|
| b6172a4ec0 | |||
| 529680baab | |||
| 1a580e3725 | |||
| d1fbff8458 | |||
| aea407bbb7 | |||
| 3c50c33fab | |||
| 518e9f0461 | |||
| 26ee2a0a29 |
@@ -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
@@ -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
|
||||
------------
|
||||
|
||||
@@ -1052,7 +1052,7 @@ EmuNetDevice::IsBridge (void) const
|
||||
void
|
||||
EmuNetDevice::SetPromiscReceiveCallback (PromiscReceiveCallback cb)
|
||||
{
|
||||
NS_FATAL_ERROR ("EmuNetDevice::SetPromiscReceiveCallback(): Not implemented");
|
||||
m_promiscRxCallback = cb;
|
||||
}
|
||||
|
||||
bool
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user