Tom Henderson
7ccd46bcfb
update RELEASE_NOTES
2015-09-07 11:21:25 -07:00
Tom Henderson
55b0e0147e
rescan bindings
2015-09-07 11:04:33 -07:00
Tommaso Pecorella
e9ff3c1695
Bug 2177 - Ipv6ExtensionHeader::Setlength - stricter checks.
2015-09-07 17:10:02 +02:00
Saswat Mishra
b1d413cb3a
Update AODV and DSR for static ARP support
2015-09-06 22:58:26 -07:00
Saswat Mishra
081b99da00
Add support for removing entries and marking permanent (static) entries in ArpCache
2015-09-06 22:57:37 -07:00
Tom Henderson
607486bea3
populate EXAMPLE_DIRECTORIES variable in the configuration cache for use by test.py
2015-09-06 22:19:22 -07:00
Sébastien Deronne
0ce1305128
Bug 2177 - Ipv6ExtensionFragmentHeader length is initialized to a wrong value.
2015-09-06 18:27:37 +02:00
Sébastien Deronne
0caed8c48f
Fix valgrind failure for aggregation test
2015-09-06 12:05:19 +02:00
Sébastien Deronne
1496895ea5
Update changes.html
2015-09-06 10:56:46 +02:00
Sébastien Deronne
e0467b9677
Update wifi documentation
2015-09-06 10:54:48 +02:00
Sébastien Deronne
ca5d9ed3cf
Update documentation for NIST and YANS validation examples; include those examples in the test suite
2015-09-05 15:54:41 +02:00
Sébastien Deronne
be042d8968
Better visibility in if conditions
2015-09-05 15:53:37 +02:00
Sébastien Deronne
007da847b8
Correct small mistake in previous commit
2015-09-05 13:37:30 +02:00
Sébastien Deronne
25c14127fd
Update documentation and extend functionnalities of ht and vht wifi examples
2015-09-05 13:33:43 +02:00
Sébastien Deronne
da41f6dd64
Remove unnecessary if conditions in ap-wifi-mac and sta-wifi-mac
2015-09-05 12:00:44 +02:00
Sébastien Deronne
1746c079c2
Add helper to convert mcs values into datarate values
2015-09-05 11:37:49 +02:00
Sébastien Deronne
e10f0cd061
Temporarily force a 10 MHz channel width in WAVE
2015-09-04 22:18:05 +02:00
Sébastien Deronne
d8b035323a
Fix broken test
2015-09-04 22:18:04 +02:00
Sébastien Deronne
dfa6adf51a
Fix remaining issues with wifimode refactoring
2015-09-04 22:18:00 +02:00
Sébastien Deronne
5159f9e6bf
Update RELEASE_NOTES
2015-09-04 22:17:57 +02:00
Siddharth Santurkar
2088c14cdd
add test programs to test waf and test.py
2015-09-03 21:17:54 -07:00
Siddharth Santurkar
b5fde4107c
port wscripts, test.py, and waf-tools to Python3
2015-09-03 21:14:55 -07:00
Natale Patriciello
8be88a788c
bug 2174: m_rWnd not updated when segments without ACK are received
2015-09-03 21:20:53 -07:00
Natale Patriciello
34046a43d0
bug 2165: server replies to SYN (with option TS) with a SYNACK (with option TS) also if the attribute Timestamp is false
2015-09-03 21:12:22 -07:00
Sébastien Deronne
d19b8f263f
update RELEASE_NOTES
2015-09-04 01:10:45 +02:00
Alexander Krotov
20f5c5e062
bug 2173: WifiInformationElement::DeserializeIfPresent attempts to read beyond the end of buffer
2015-09-04 01:10:29 +02:00
Sébastien Deronne
ba299a9270
rescan bindings
2015-09-03 23:57:43 +02:00
Sébastien Deronne
04dfda290c
add support for IEEE 802.11ac
2015-09-03 22:16:49 +02:00
Tom Henderson
3634c939ce
bug 2157: OpenFlowSwitchNetDevice::BufferFromPacket setting eth_type incorrectly (patch due to Kang Chen)
2015-09-02 16:37:05 -07:00
Tom Henderson
a722fdd7d9
bug 1557: errors in OpenFlowSwitchNetDevice::BufferFromPacket(); patch due to Long Li and Ovidiu Poncea
2015-09-02 16:32:46 -07:00
Tom Henderson
de6214fb60
bug 1927: wrap Chi-squared test of random-variable-stream-generators test suite
2015-09-01 21:28:48 -07:00
Tom Henderson
13de20bb3a
bug 1927: allow deterministic seeding of random-variable-stream-generators TestSuite
...
After this commit, the following will cause the test suite to always fail:
NS_GLOBAL_VALUE="RngRun=231" ./test.py -s random-variable-stream-generators
2015-09-01 21:03:55 -07:00
Sébastien Deronne
9b7f0c36e7
update RELEASE_NOTES
2015-09-01 22:48:58 +02:00
Sébastien Deronne
7880fe92cd
Bug 2104 [wifi] - Sequence Number passed to QosUtilsMapSeqControlToUniqueInteger instead of Sequence Control (initial fix from Steven Sultana)
2015-09-01 22:44:51 +02:00
Sébastien Deronne
fab6e9f7ef
Fix issue when a normal data packet is sent between A-MPDUs
2015-09-01 22:02:05 +02:00
Sébastien Deronne
8142fd111a
Check that a transmission will never have a null duration in YansWifiPhy
2015-09-01 21:59:50 +02:00
Ovidiu Poncea
8f00ef9db8
bug 2158: Fix flooding of packets on input port, for packets received on in!=0
...
When you have the action OFPP_FLOOD on a flow, and the received packet is
not coming into the switch through port 0, then the packet will be flooded on
all ports, including the receiving port! This is especially bad if
you have broadcasts as packets will get replicated indefinitely (ARP req for
e.g.). This is caused by missing ntohs() that fails to convert port numbers
to their correct values. The switch works correctly for broadcast packets
received on port zero.
Example: The ReceivePacketOut() gets 0 if the input port is 0 and it works.
But will get 512 if the input port is 1 and since 512 is not our real input
port the check will fail and the packet will also be replicated on the input
port.
2015-08-31 10:41:05 -07:00
miilic
a424bb4feb
Bug 2170 - AnimationInterface outputs improperly formed XML
2015-08-27 18:08:12 -07:00
Sébastien Deronne
46d6c423bd
fix issue with previous commit
2015-08-26 22:05:34 +02:00
Sébastien Deronne
5326588f54
avoid calls to GetQosTid for non QoS Data
2015-08-25 19:15:35 +02:00
Matías Richart
61c9d74b0e
Bug 2171 - power-adaptation-distance.cc:202:22: error: call to 'pow' is ambiguous
2015-08-25 06:46:23 -07:00
Sébastien Deronne
2998c02be4
add missing condition in mac-low
2015-08-24 20:02:16 +02:00
Tom Henderson
bcacc03cca
avoid test suite name collision
2015-08-23 16:06:17 -07:00
Tommaso Pecorella
739eb2dbf3
Bug 2166 - SteadyStateRandomWaypointMobilityModel directs the node to the ground
2015-08-22 17:06:25 +02:00
Tommaso Pecorella
ad42c61e54
Fix clang "error: unused function" error.
2015-08-22 16:27:17 +02:00
Peter D. Barnes, Jr.
798c314b09
Refactor test name character restrictions: allow '*'
2015-08-21 13:48:32 -07:00
Peter D. Barnes, Jr.
dea2f0b8c7
Change TestSuite class name to avoid duplication in static builds.
2015-08-21 13:46:14 -07:00
Junling Bu
50f5d91370
bug 2146: bug in WAVE channel coordination code
2015-08-21 11:58:50 -07:00
Peter D. Barnes, Jr.
b1976b6366
Merge
2015-08-18 16:59:27 -07:00
Peter D. Barnes, Jr.
61f2fbd415
[doxygen] Revise TracedCallback function signatures for const.
2015-08-18 16:46:10 -07:00