Stephen Morris
0fd58479c4
[1470] Corrected data type of index into vector
2011-12-12 19:54:10 +00:00
Stephen Morris
c066e58bd5
[1470] Correct declaration of getAdditive()
2011-12-12 19:51:38 +00:00
Stephen Morris
ae4e8ba0c8
[1470] Forward declare OutputOption as a struct.
2011-12-12 19:42:06 +00:00
Stephen Morris
b5f53a5099
[1470] Correct data type of variable
2011-12-12 19:40:01 +00:00
Stephen Morris
f15d883138
[1470] Added checks for zero length data
2011-12-12 19:37:13 +00:00
Stephen Morris
0a5f810dd8
[1470] Remove redundant include file
2011-12-12 19:16:59 +00:00
Stephen Morris
cd4c9eb086
[1470] Correct data type of counter
2011-12-12 19:13:05 +00:00
Stephen Morris
5dbdcfa0a3
[1470] Check for null filename before attempting to open master file
2011-12-12 18:48:22 +00:00
Stephen Morris
c4ca960f31
[1470] Change "for" loop initialization to more standard style
2011-12-12 18:37:57 +00:00
Stephen Morris
5cdcda0439
[1470] Correct data type of member variable in MockAccess::MockIteratorNameContext
2011-12-12 18:20:46 +00:00
Stephen Morris
f18114000f
[1470] Iterate over unchanging map when removing identical elements
...
A method iterates over a std::map and removes from it elements that
match those in another map. This can lead to a problem on some
operating systems if the element removal affects the iterator.
The fix here is to iterate over the (unchanging) reference map.
2011-12-12 18:12:39 +00:00
Stephen Morris
0213d987ac
[1470] Removed declared but unused exception variable
...
This leads to a warning on some compiler.
2011-12-12 17:34:26 +00:00
Stephen Morris
62463d1d02
[1470] Reconcile declaration of Data
...
The .cc has it defined as "struct" and the .h file referenced a
"class". This has now been harmonised as "struct".
2011-12-12 17:14:03 +00:00
Stephen Morris
bf2e60ca2a
[1470] Change some loop indexes to unsigned values
...
Some loops changed to use unsigned loop indexes to avoid warning
messages from some compilers.
2011-12-12 17:09:00 +00:00
Tomek Mrugalski
64546f4f97
[992] Changes after review.
2011-12-12 18:04:12 +01:00
Jelte Jansen
936855eb6f
[1414] use default value for secondary_zones/class
...
and provide better error for missing name
2011-12-12 17:22:08 +01:00
Stephen Morris
29003e06a6
[1470] Qualify "error_code"
...
One compiler had a problem with the unqualifier data type
"error_code". This has been changed to "asio::error_code".
2011-12-12 15:39:41 +00:00
Stephen Morris
0daa6e10d2
[1470] Make io_fetch.cc and .h consistent about type of IOFetchData
...
Was declared as "class" in one and "struct" in another - now declared
as "struct" in both.
2011-12-12 14:45:25 +00:00
Stephen Morris
0910b0f180
[1470] Replace char by uint8_t for initialized numeric data
2011-12-12 14:40:31 +00:00
Stephen Morris
c254f7fcb4
[1470] Remove "this" from initializer lists
...
Some compilers warn if "this" is referred to in a constructor
initialization list. This change replaces such initializations
with an assignment within the constructor body.
2011-12-12 14:29:12 +00:00
Jelte Jansen
6c60425c85
[1451] add (empty) manpage, and un-generate spec
2011-12-12 15:28:42 +01:00
Jelte Jansen
0bddf9ffef
[1451] add stub DDNSSession object and some spec data
2011-12-12 15:28:42 +01:00
Jelte Jansen
bf289fc63b
[1451] fixes for distcheck
2011-12-12 15:28:42 +01:00
Jelte Jansen
3dbb7c077b
[1451] fix module so that it is runnable
2011-12-12 15:28:42 +01:00
Jelte Jansen
d7a5e79e81
[1451] cleanups for initial additions
2011-12-12 15:28:41 +01:00
Jelte Jansen
0431e1b28a
[1451] initial addition of directory and files
2011-12-12 15:28:41 +01:00
Michal 'vorner' Vaner
90c77658e7
[1483] Port the rest to new interface
2011-12-12 13:20:32 +01:00
Stephen Morris
07d2c46d78
[1405] Make default "flush" option for logging "true"
...
By default, the logging layer should now flush after each message.
2011-12-12 11:16:13 +00:00
JINMEI Tatuya
e0c434fbb5
[1452] avoid using a reference in std::pair. it doesn't work with all compilers.
2011-12-10 17:52:52 -08:00
JINMEI Tatuya
b5e5d9e912
[1452] use <errno.h> instead of sys/errno.h. the former seems to be more portable.
2011-12-10 17:51:13 -08:00
JINMEI Tatuya
09ed7a24bf
[1452] initial workable implementation of the more generic FD pasing framework.
...
many corner case considerations are still left often.
2011-12-10 15:09:08 -08:00
Michal 'vorner' Vaner
8e93f114a9
[1483] Port the ANY logic in memory datasource
...
To the new interface. The tests were reintroduced.
2011-12-09 21:26:31 +01:00
Michal 'vorner' Vaner
118d0d9c04
[1483] Defined the findAll method interface
2011-12-09 19:32:28 +01:00
Michal 'vorner' Vaner
cbddeb5ad8
[1438] Strip the datasources of target parameter
...
Is is being deprecated by a separate method in this branch, so get rid
of it.
2011-12-09 19:18:20 +01:00
Tomek Mrugalski
1615a521d6
Fix for cppcheck (after 1238 merge)
2011-12-09 18:30:56 +01:00
Tomek Mrugalski
e26901a197
Fix for failing test in IfaceMgr on FreeBSD (fix after 1238 merge)
2011-12-09 18:30:39 +01:00
JINMEI Tatuya
eaa492e0bf
[master] changed the return value of findNSECCover() from RRsetPtr to ConstRRsetptr.
...
This will fix build failure due to the mixture of these in ?:. (and in any
event when we can make something const that's generally good to do)
2011-12-09 08:56:38 -08:00
Francis Dupont
2611ea78da
phase 2 initial code
2011-12-09 16:22:58 +01:00
Stephen Morris
95b7c29f15
[1198] Merge branch 'master' into trac1198
...
Conflicts:
src/lib/datasrc/database.cc
src/lib/datasrc/datasrc_messages.mes
2011-12-09 13:25:17 +00:00
Stephen Morris
a677ae91c9
[master] ChangeLog for Trac 1383
2011-12-09 10:48:57 +00:00
Stephen Morris
9b2b249d23
Merge branch 'master' into trac1383
2011-12-09 10:28:41 +00:00
Stephen Morris
45274924f3
[master] Add missing inclusion of logging library to link line
2011-12-09 10:25:54 +00:00
Tomek Mrugalski
a6a35e9970
Merge branch 'master' of ssh://git.bind10.isc.org/var/bind10/git/bind10
...
Conflicts:
ChangeLog
2011-12-09 10:01:01 +01:00
Jelte Jansen
c8dc421c5c
[master] changelog
2011-12-09 09:53:19 +01:00
Jelte Jansen
91fb141bfb
Merge branch 'trac1442'
2011-12-09 09:06:56 +01:00
Yoshitaka Aharen
f84f26374f
[510] use std::map instead of boost::unordered_map
...
boost/unordered_map.hpp is available since Boost 1.36. we should
consider to check if the header file is present with configure.
2011-12-09 13:58:57 +09:00
Yoshitaka Aharen
7a5214fa8a
Revert "[510] do not use BOOST_FOREACH to address build failure on Mac OS X"
...
This reverts commit 1cd21e93810b18a4aa90d7d20afa6dbc3c0a8861.
2011-12-09 13:56:32 +09:00
JINMEI Tatuya
37a11387ba
[master] fixed tabbing
2011-12-08 13:21:42 -08:00
JINMEI Tatuya
cee6a7af5f
[master] added changelog entry for #1387
...
also fixed a minor type for entry 338 (as discussed on the dev ML)
2011-12-08 13:10:01 -08:00
JINMEI Tatuya
a5e9d9176e
[master] Merge branch 'trac1387'
2011-12-08 12:54:25 -08:00