Commit Graph

10188 Commits

Author SHA1 Message Date
Tom Henderson
154d5b3ad2 Added tag ns-3.18 for changeset cfbc9491d7e7 2013-08-29 22:30:57 -07:00
Tom Henderson
fb8816e2e8 add data collection chapter to the tutorial 2013-08-28 20:53:04 -07:00
Tom Henderson
f765bcff0f remove trailing whitespace 2013-08-28 18:45:56 -07:00
Tom Henderson
b7d694683f update introduction of tutorial 2013-08-28 17:13:51 -07:00
Tom Henderson
aa99130b08 update bindings 2013-08-27 19:08:05 -07:00
Tom Henderson
3a3299d6eb a few tutorial edits 2013-08-25 17:15:53 -07:00
Tom Henderson
f4939928e0 bug 1755: hash test failure for gcc-4.4.3 (workaround) 2013-08-23 14:27:32 -07:00
Peter D. Barnes, Jr.
94507fe6f1 bug 954: eliminate valgrind warnings 2013-08-21 15:27:21 -07:00
Andrey Mazo
9b73661ef8 bug 1584: Association Request Timeouts not canceled. - Fixed copy-paste error in 831ad8abd1c0. 2013-08-19 18:30:18 +02:00
Tommaso Pecorella
67e43c7ea1 bug 1584: Association Request Timeouts not canceled (reported by Pedro Fortuna, extended by Tommaso Pecorella) 2013-08-18 23:14:50 -07:00
Tom Henderson
11323e4c2c Update AUTHORS file 2013-08-18 23:11:36 -07:00
Peter D. Barnes, Jr.
3fb1d11a1e [Bug 954] Protect g_markingTimes with a mutex. 2013-08-16 11:10:19 -07:00
Peter D. Barnes, Jr.
eba69d2728 Handle showpos bug in gcc libstc++ 4.2. 2013-08-14 16:55:47 -07:00
Peter D. Barnes, Jr.
39f6b03211 Restore "x.0ns" to result of operator<< (Time) 2013-08-14 16:55:06 -07:00
Peter D. Barnes, Jr.
fbf500f9b0 Fix bug affecting conversion of Time::Min/Time::Max during Time::SetResolution 2013-08-14 16:54:22 -07:00
Peter D. Barnes, Jr.
ffcfd9de72 Trim trailing whitespace, doxygen comments 2013-08-14 16:53:41 -07:00
Peter D. Barnes, Jr.
85e9ba3b48 bug 954: Changing the simulation time resolution does not work well with attributes
v.3 Responding to code review comments

https://codereview.appspot.com/6821106/
2013-08-14 16:52:06 -07:00
Tom Henderson
d1ce1beb67 update RELEASE_NOTES 2013-08-16 10:14:53 -07:00
Tom Henderson
66d87a0340 rescan bindings 2013-08-16 10:13:05 -07:00
Tom Henderson
0945bb9e1b bug 1723: name clash in ipv4-header.h from <termios.h> 2013-08-16 09:50:18 -07:00
Tom Henderson
1e9031deba rescan bindings 2013-08-16 09:49:05 -07:00
Tom Henderson
a972f2609b bug 1690: wifi wscript fixes 2013-08-16 09:17:13 -07:00
Tom Henderson
eab5416dd9 update CHANGES.html, cleanup some formatting 2013-08-16 09:03:55 -07:00
Tom Henderson
80422e7161 update bindings 2013-08-16 08:36:51 -07:00
Tom Henderson
d006cf014f align command-line test suite to recent changes 2013-08-16 08:28:39 -07:00
John Abraham
ae9ea26142 update release notes 2013-08-15 22:48:16 -07:00
John Abraham
21e900f3e5 Bug 1629 - Make AODV Default to Disable Hello 2013-08-15 22:39:03 -07:00
John Abraham
9b60ad3617 Update internet-stack-helper API for jitter and CHANGES.html 2013-08-15 21:00:57 -07:00
Tommaso Pecorella
31aac3aea7 Addendum to bug 1522 2013-08-16 02:21:51 +02:00
Peter D. Barnes, Jr.
61903c64b2 Link to RFC num with \RFC{num} 2013-08-15 13:04:01 -07:00
Peter D. Barnes, Jr.
8695d856a1 Link to bug num in bug database with \bugid{num} 2013-08-15 12:01:57 -07:00
Peter D. Barnes, Jr.
c0d6f58a71 Include all doc images in doxygen 2013-08-07 11:29:45 -07:00
Peter D. Barnes, Jr.
82525eadf4 Include all examples in doxygen 2013-08-07 11:29:17 -07:00
Peter D. Barnes, Jr.
4a6adc5e51 Make CommandLine print boolean defaults as text.
And
- clarify the documentation
- make example arguments more explicit
- make "--boolArg" toggle the value, not set to true (this enables
    toggle on default true values)
2013-08-07 10:36:45 -07:00
Steven Smith
0e5a67fd20 Bug 1753 Halting Issue with DistributedSimulatorImpl 2013-08-15 14:45:42 -04:00
John Abraham
9bc367b99f Merge 2013-08-15 09:51:32 -07:00
John Abraham
5adb032add Bug 1522 - Hidden node scenario leads to ARP failure 2013-08-15 09:50:34 -07:00
John Abraham
490bd45706 Bug 1190 - Suppress hello if bcast was sent within the last hello interval 2013-08-15 09:49:40 -07:00
John Abraham
08e8705d2b Bug 1190 - Suppress hello if bcast was sent within the last hello interval 2013-08-15 09:48:40 -07:00
Peter D. Barnes, Jr.
9c172a5b81 Fix Bug 1687: wscript features report doesn't respect NOCOLOR 2013-08-14 14:12:38 -07:00
Peter D. Barnes, Jr.
ef45e91592 Update RELEASE_NOTES with Bug 1738 2013-08-14 13:31:46 -07:00
Peter D. Barnes, Jr.
cb27e3276b Silence erroneous strict alias warning from a gcc 4.4 bug
Casting \c (void*) triggers a strict alias warning bug
in gcc 4.4 (see \bugid{1738}).

In the murmur3 code, data is returned by
\code
  void Function (... , void * out)
  {
    ...
    *(uint32_t *)out = ...
  }
\endcode

which triggers the erroneous warning.

We suppress strict-alias warnings in this compilation unit.
(gcc 4.4 doesn't support the <tt>diagnostic push/pop</tt> pragmas,
so we can't narrow down the suppression any further.)
2013-08-14 12:56:31 -07:00
Vedran Miletić
f9f3110086 Remove unused wifiMode variable, fix build 2013-08-14 12:21:20 +02:00
Alexander Afanasyev
47a985c9ca [PATCH] core: Extending public interface of CommandLine class 2013-08-13 23:19:31 -07:00
Alexander Afanasyev
a6857b4ec7 bug 1754: add missing GIL lock in generated callback destructor 2013-08-13 22:56:39 -07:00
Tom Henderson
b4828adb74 update wifi bindings 2013-08-13 22:54:45 -07:00
Tom Henderson
92b58436dd remove unimplemented declaration 2013-08-13 22:43:08 -07:00
Ghada Badawy
085a0eea39 partial 802.11n support 2013-08-13 22:05:25 -07:00
Tom Henderson
8ae2fe07e2 rescan bindings 2013-08-13 10:37:49 -07:00
Tom Henderson
41f1d3a0f1 avoid use of core-module.h header in src tree 2013-08-13 10:37:41 -07:00