2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-03 15:35:17 +00:00
Commit Graph

9621 Commits

Author SHA1 Message Date
Mukund Sivaraman
51b3f091d6 bug #1728: Add -avoid-version in some more places 2012-03-22 18:34:14 +05:30
Mukund Sivaraman
652ae9e92f bug #1728: Set LD_LIBRARY_PATH on OpenBSD as well 2012-03-22 18:34:06 +05:30
Mukund Sivaraman
ba9dcb416a master: Fix AC_LANG_SOURCE warnings from automake 2012-03-22 18:33:58 +05:30
Mukund Sivaraman
c6d6f765fa bug #1728: Add -avoid-version to LDFLAGS for Python modules (contd.) 2012-03-22 18:33:50 +05:30
Mukund Sivaraman
927397a769 bug #1728: Add -avoid-version to LDFLAGS for Python modules 2012-03-22 18:33:41 +05:30
Jeremy C. Reed
54c1a257f7 [master]Merge branch 'master' of ssh://git.bind10.isc.org/var/bind10/git/bind10 2012-03-22 07:55:10 -05:00
Jeremy C. Reed
2482bf2363 [master] document Xfrout notify command.
And remove the now renamed/removed internal only zone_new_data_ready
command.

Regenerate nroff file too (which includes

No new changelog entry. This goes with changelog entry 402.

Somewhat discussed on jabber. Didn't get consensus on one sentence,
but that can always be clarified later.
2012-03-22 07:50:50 -05:00
JINMEI Tatuya
40d727bf4c [1775] use a template to share the same code for const/non cost of findNode.
we can then avoid const_cast.
2012-03-22 01:49:24 -07:00
JINMEI Tatuya
d3e876aacd [1775] added some more notes about the property of the aux wildcard tree. 2012-03-22 00:30:27 -07:00
JINMEI Tatuya
af816ab1e0 [1775] added an assertion check for NULL pointer.
this shouldn't happen based on the RBTree API contract, but some versions
of cppcheck reportedly complain about this.
2012-03-22 00:21:24 -07:00
JINMEI Tatuya
6f8e187c1b [1688] re-enabled lettuce tests that failed due to missing dup suppression.
note: there's an error in the test description itself.  In "7.2.2 other",
the result should be NOERROR, not NXDOMAIN, because it should match
*.w.example (BIND 9 indeed returns NOERROR, for that matter).  I fixed
this, then all tests passed.
2012-03-21 23:54:04 -07:00
JINMEI Tatuya
e70bd3ba8f [1688] removed redundant duplicate check for NSECs. 2012-03-21 23:41:09 -07:00
JINMEI Tatuya
a6d9e2bc94 [1688] use BOOST_FOREACH instead of dedicated for loops.
this could be slightly more efficient because it avoids redundant calls
to vector::end().  In my experiments I actually didn't see much difference,
but it doesn't harm anyway.
2012-03-21 23:33:23 -07:00
JINMEI Tatuya
4ad96ab57e [1688] suggested reorg: merge response building to the inserter class.
that way we don't have to expose mutable member variables of `Query`.
now the responsibility of the "inserter" is enlarged, also renamed it
to represent the new job more appropriately.
2012-03-21 21:45:00 -07:00
JINMEI Tatuya
847525d5ac [1688] additional test case of duplicate in the same section.
the implementation already correctly handles this, so no need to update it.
2012-03-21 21:40:19 -07:00
JINMEI Tatuya
fd5a4de548 [1688] suggested cleanup: use vector::insert instead of copy().
also avoid referring to an invalid range of iterator with operator+; use
end() instead (although the original code was probably safe at least in
practice).
2012-03-21 21:06:52 -07:00
JINMEI Tatuya
826ac1a139 [1688] some more trivial cleanups: long line, comment wording, simplification. 2012-03-21 14:44:32 -07:00
JINMEI Tatuya
c0f704fc09 [1688] editorial fixes/cleanups: folded long line, naming convention, constify.
also removed "addRRset" utility from rbnode_rrset_unittest, which seems to
be a leftover from an intermediate version (and isn't used anyway)
2012-03-21 13:58:50 -07:00
JINMEI Tatuya
5110dd59de [master] fill in TBD for the git hash of #1727
Also removed the garbage '?' mark.  It appears I accidentally committed/pushed
the proposed entry to master...so this is just for cleanup.
2012-03-21 11:58:13 -07:00
JINMEI Tatuya
23f9c3670b [master] Merge branch 'trac1727' 2012-03-21 11:46:47 -07:00
Mukund Sivaraman
a06071b1dc bug #1639: Update ChangeLog 2012-03-21 23:32:23 +05:30
Jelte Jansen
24b2851dc0 [1443] add command-line arguments
also extend log message a bit
2012-03-21 17:35:03 +01:00
Jelte Jansen
e17fed2f2b [1443] add method to move config file 2012-03-21 17:03:54 +01:00
Jeremy C. Reed
6784b5dbb0 [master] change DATASRC_QUERY_NO_ZONE from INFO to DEBUG
using debug level of 40 for now.

This is for ticket #1102.

Also clarify the log description.

No changelog entry.

Discussed some on jabber.
2012-03-21 09:54:39 -05:00
Jelte Jansen
f2594b4779 [1293] update ZONEMGR_UNKNOWN_ZONE_FAIL description 2012-03-21 15:54:33 +01:00
Jelte Jansen
f6c1593309 [1172] better printing of command help
- don't reorder output based on mandatoriness
- copy 'item_description' field from spec file as well
2012-03-21 12:09:33 +01:00
Jelte Jansen
874cd35c92 [1172] check for SyntaxError exception
and reraise as DataTypeError (which is handled), so bindctl does not crash
2012-03-21 12:08:58 +01:00
JINMEI Tatuya
33fc078792 [1775] make sure wildcard expanded additonal data is returned.
for this purpose prepareRRset became a separate free function in an unnamed
namespace.  The temporarily disabled test for this case now passes, so
is enabled again.
2012-03-21 00:27:27 -07:00
JINMEI Tatuya
15aea6b5fe [1775] introduce a mutable version of findNode() and use it in addAdditional.
this is an attempt of making the other version as safe as possible without
sacrificing its performance.
2012-03-20 22:46:49 -07:00
Mukund Sivaraman
766e74511e bug #1639: Change comment in configure.ac 2012-03-21 10:08:40 +05:30
JINMEI Tatuya
228fe4a17c [1639] some minor editorial fixes: () for return, indentation consistency 2012-03-21 10:08:31 +05:30
Mukund Sivaraman
d576a1526e bug #1639: Add comment to endif 2012-03-21 10:08:24 +05:30
Mukund Sivaraman
6ea0b1d62e bug #1639: Implement a pselect() wrapper around select() for OpenBSD 2012-03-21 10:08:09 +05:30
JINMEI Tatuya
9c4fea2673 [1775] second refactoring: use extracted findNode() from addAdditional.
no behavior change yet.  not yet supported the wildcard case.
2012-03-20 20:51:24 -07:00
JINMEI Tatuya
beb36d9729 [1775] refactoring: extract the first part of find() to a separate method.
It's intended to be shared with addAdditional().  It will aslo help make
the find more readable.
2012-03-20 20:48:53 -07:00
Stephen Morris
d85eda60ea [963] Changes after review. 2012-03-20 22:37:50 +00:00
Stephen Morris
b09579f0af [1688] Updated as a result of review 2012-03-20 18:59:23 +00:00
JINMEI Tatuya
4de96e9a32 [master] Merge branch 'trac1784' with fixing conflicts. 2012-03-20 09:43:47 -07:00
Michal 'vorner' Vaner
181d405a1e [963] Minor whitespace fixes 2012-03-20 12:25:17 +01:00
Michal 'vorner' Vaner
79af4f917e Merge #1760 2012-03-20 10:24:42 +01:00
JINMEI Tatuya
ff926e0665 [1688] trivial editorial fixes. 2012-03-20 00:00:45 -07:00
JINMEI Tatuya
0acc164c6a [1727] define BOOST_DISABLE_THREADS if Boost doesn't use theads by default.
this will fix a crash in asiolink tests on OpenBSD due to its deviant
behavior that could result in different configuration on the use of
boost threads in different .cc files.
2012-03-19 23:00:23 -07:00
JINMEI Tatuya
c96ac865ac [1579] some trivial editorial/style fixes
- removed white spaces at EOL
- add a spaece after commas
- variable naming convention (use underscored lower cased chars)
- indentation
2012-03-19 14:01:04 -07:00
JINMEI Tatuya
da4d1f0f46 [master] Merge branch 'trac1783' 2012-03-19 10:48:55 -07:00
Jelte Jansen
3dfd3b25e2 [1812] remove newline 2012-03-19 23:02:35 +05:30
Mukund Sivaraman
7b7252d044 [1812] Initialize srandom() with seed other than 0 when not using a random seed
This is because random() always returns 0 on OpenBSD 5.0, when
the RNG is initialized with srandom(0).
2012-03-19 23:02:26 +05:30
JINMEI Tatuya
e0cee3754d [1783] noted a future extension to RendererHolder so it's more visible. 2012-03-19 10:31:33 -07:00
Stephen Morris
538350b7db [963] Cosmetic upgrade to some error messages 2012-03-19 17:28:57 +00:00
JINMEI Tatuya
bd2da89767 [1784] signed/unsigned fix 2012-03-19 10:14:22 -07:00
Stephen Morris
7e7b44723b [963] Miscellaneous changes
1. Fix minor gremlins in unit test and main program
2. Update to rename b10-dbutil process (and so avoid an error
from the process_rename_test check).
3. With (2), add run_dbutil to run in test mode
2012-03-19 17:07:06 +00:00