- 12 Aug, 2013 1 commit
-
-
Michal 'vorner' Vaner authored
The bug is in offset pointer, not in the red-black tree.
-
- 07 Aug, 2013 2 commits
-
-
Michal 'vorner' Vaner authored
After trying to persuade automake to disable optimisations selectively on the library or object file and trying desperate ways like https://lists.gnu.org/archive/html/automake/2006-09/msg00038.html, it produced a different kind of segfault with that version of boost. It's likely that part of boost was not matured in that version yet, so require new boost for the shared memory support.
-
Michal 'vorner' Vaner authored
With old version of boost and some versions of gcc, the RBTree implementation is not stable with optimisations turned on. Detect the old boost if we use gcc (no idea how to trigger it with the whole machinery of the crashing test, so testing against the version). Fail in that case now, we'll do something more drastic in following commits.
-
- 05 Aug, 2013 19 commits
-
-
Thomas Markwalder authored
-
Thomas Markwalder authored
Adds initial implementation of D2QueueMgr class to DHCP_DDNS. This class is manages the queue of inbound DHCP_DDNS requests.
-
Thomas Markwalder authored
-
Thomas Markwalder authored
Changes were largely cosmetic.
-
Marcin Siodelski authored
-
Stephen Morris authored
-
Stephen Morris authored
Conflicts: doc/Doxyfile doc/devel/mainpage.dox
-
Mukund Sivaraman authored
-
Marcin Siodelski authored
The following statement 'buf[i + 1] << 8 + buf[i] & 0xFF' was replaced with this '(buf[i + 1] << 8) + (buf[i] & 0xFF)' because + operator takes precedence over << operator.
-
Michal 'vorner' Vaner authored
-
David Carlier authored
Applied with trivial whitespace fixes.
-
Mukund Sivaraman authored
-
Mukund Sivaraman authored
-
Mukund Sivaraman authored
If the cmdctl-certfile.pem is older than cmdctl-keyfile.pem for some reason, make will try to run the rule every time.
-
Mukund Sivaraman authored
-
Mukund Sivaraman authored
-
Mukund Sivaraman authored
-
Yoshitaka Aharen authored
-
Yoshitaka Aharen authored
-
- 02 Aug, 2013 16 commits
-
-
Stephen Morris authored
-
Thomas Markwalder authored
DHCP packet pack methods now throw exceptions on error, rather then returning bool result value.
-
Thomas Markwalder authored
Removed obsoleted error messages, altered exception by Packet6::packTCP to be NotImplemented rather than Unexpected. Corrected method commentary.
-
Michal 'vorner' Vaner authored
-
Mukund Sivaraman authored
-
Mukund Sivaraman authored
-
Mukund Sivaraman authored
-
Mukund Sivaraman authored
These are better replaced with size_ts everywhere, but we set it the test DomainTree's data, and the data is an int, so it has been changed everywhere to be an int for consistency.
-
Mukund Sivaraman authored
-
Mukund Sivaraman authored
-
Mukund Sivaraman authored
-
Mukund Sivaraman authored
This is a test that verifies that the tree is balanced, and doesn't go over the red-black theoretical limit. It constructs a random large million+ name zone and checks that the distance from every node to its subtree root is within limit. This is a check that was not implemented and we should have this as performance correctness proof, as the DomainTree is so central to our memory datasrc performance.
-
Mukund Sivaraman authored
* Make the code more straightforward to follow * Add docs to make it easy to understand
-
Mukund Sivaraman authored
-
Mukund Sivaraman authored
-
Mukund Sivaraman authored
-
- 01 Aug, 2013 1 commit
-
-
Mukund Sivaraman authored
-
- 31 Jul, 2013 1 commit
-
-
Jeremy C. Reed authored
-