]> git.ipfire.org Git - thirdparty/kea.git/log
thirdparty/kea.git
14 years ago[2179] added a proposed Changelog entry
Naoki Kambe [Sat, 4 Aug 2012 22:54:03 +0000 (07:54 +0900)] 
[2179] added a proposed Changelog entry

14 years ago[2179] Supported a identifier in isc.cc.data e.g. "xxx/yyy/zzz[i]"
Naoki Kambe [Mon, 6 Aug 2012 05:30:52 +0000 (14:30 +0900)] 
[2179] Supported a identifier in isc.cc.data e.g. "xxx/yyy/zzz[i]"

If a target module returns data whose key name is such a identifier type, the
stats module can identify statistics data. The stats module checks the
validation of data even if such a identifier is specified. But when the stats
shows statistics data e.g. via bindctl, this type of identifier is not shown
for now.

14 years ago[2179] Supported a named_set data type
Naoki Kambe [Mon, 6 Aug 2012 05:26:43 +0000 (14:26 +0900)] 
[2179] Supported a named_set data type

A named_set data type is supported in a spec file in each module for
statistics.

14 years ago[2179] Supported differential statistics updates of Stats
Naoki Kambe [Sat, 4 Aug 2012 22:53:29 +0000 (07:53 +0900)] 
[2179] Supported differential statistics updates of Stats

Stats updates corresponding statistics data which each module returns.  For
that, the method "update_statistics_data()" was updated to merge recursively
old value and new value each other. As for this merging, a new method
"merge_oldnew" was introduced into stats.py. This method is intended to be
internally used so far.

14 years agoMore fix not to change commands' output to config channel.
Kazunori Fujiwara [Thu, 9 Aug 2012 05:00:50 +0000 (14:00 +0900)] 
More fix not to change commands' output to config channel.

14 years ago[2136] moved invoking update_modules() to outside of the method
Naoki Kambe [Wed, 8 Aug 2012 12:39:21 +0000 (21:39 +0900)] 
[2136] moved invoking update_modules() to outside of the method

When the set command was used for collecting statistics data, the action was
randomly. But in the case that periodical polling is used for collecting
statistics data, update_modules doesn't need to be invoked so many times every
time update_statistics_data is invoked. Invoking update_module() causes an IO
wait for receiving statistics spec from Cfgmgr.

14 years ago[2136] corrected the improper test
Naoki Kambe [Wed, 8 Aug 2012 12:29:24 +0000 (21:29 +0900)] 
[2136] corrected the improper test

Not self.stats.mccs.specification but self.stats.modules['Stats'] should be set
the invalid spec_module into. And it should check whether StatsError is raised
by setting the owner to the self module name in the argument of command_show.

14 years ago[2136] removed the do_polling method from the __init__ method of stats.Stats()
Naoki Kambe [Wed, 8 Aug 2012 12:22:45 +0000 (21:22 +0900)] 
[2136] removed the do_polling method from the __init__ method of stats.Stats()

Because do_polling() is done when the show command is invoked, the do_polling
method didn't need to be done when the stats is starting.  Related to this
change, the b10-stats_test.py was changed. do_polling() is inserted before the
assertion of statistics_data.

14 years ago[2136] added a note about a value from the Boss command show_processes
Naoki Kambe [Thu, 9 Aug 2012 04:26:36 +0000 (13:26 +0900)] 
[2136] added a note about a value from the Boss command show_processes

14 years ago[2136] removed an unnecessary loop
Naoki Kambe [Wed, 8 Aug 2012 11:05:53 +0000 (20:05 +0900)] 
[2136] removed an unnecessary loop

14 years ago[2136] revised the internal method _accum()
Naoki Kambe [Thu, 9 Aug 2012 04:41:04 +0000 (13:41 +0900)] 
[2136] revised the internal method _accum()

- Other conditions are considered. One case is that two args are string type,
  another case is that either of them is None type.

- _accum() was moved to outside of the Stats class for testing it individually.

- revised the FIXME description in update_statistics_data() according to the
  above changes

14 years ago[2100] (not directly related) cleanup: always destroy old data in setData().
JINMEI Tatuya [Thu, 9 Aug 2012 00:56:16 +0000 (17:56 -0700)] 
[2100] (not directly related) cleanup: always destroy old data in setData().

actually the previous implementation seems buggy; it returns the given pionter,
not the old data.  Worse, this code path isn't tested.  It's a typical example
of YAGNI; if we don't see the need for it, don't do it; if you cannot regist
the temptation of making it smarter, at least you should write tests.

At least ZoneTable doesn't need it, so I chose to clean it up.  If and when
we find it necessary, we should implementation from the scratch, and
test-driven.

14 years ago[2100] use offset pointer for domaintree data.
JINMEI Tatuya [Thu, 9 Aug 2012 00:52:26 +0000 (17:52 -0700)] 
[2100] use offset pointer for domaintree data.

not absolutely necessary for this branch, but that's the intent anyway.

14 years ago[2100] use offset pointer for the underlying tree
JINMEI Tatuya [Thu, 9 Aug 2012 00:46:11 +0000 (17:46 -0700)] 
[2100] use offset pointer for the underlying tree

14 years ago[2100] cleanup: removed removeZone().
JINMEI Tatuya [Thu, 9 Aug 2012 00:38:25 +0000 (17:38 -0700)] 
[2100] cleanup: removed removeZone().

right now it doesn't work, and when we need to implement it, the internal
will need to be substantially updated anyway, so it doesn't make much sense
to keep the nonworkable version.

14 years ago[2100] documentation update
JINMEI Tatuya [Thu, 9 Aug 2012 00:37:23 +0000 (17:37 -0700)] 
[2100] documentation update

14 years ago[2100] updated the return type of findZone().
JINMEI Tatuya [Thu, 9 Aug 2012 00:15:50 +0000 (17:15 -0700)] 
[2100] updated the return type of findZone().

It now simply returns ZoneData as the data associated with the code;
the corresponding client implementation will create a zone finder from it.
also updated some doc.

14 years ago[2100] return the created zone data from addZone.
JINMEI Tatuya [Wed, 8 Aug 2012 23:48:36 +0000 (16:48 -0700)] 
[2100] return the created zone data from addZone.

14 years ago[2100] improved exception safety.
JINMEI Tatuya [Wed, 8 Aug 2012 23:26:28 +0000 (16:26 -0700)] 
[2100] improved exception safety.

14 years ago[2100] revised addZone() iface: now it only takes name, creates data in it.
JINMEI Tatuya [Wed, 8 Aug 2012 22:36:45 +0000 (15:36 -0700)] 
[2100] revised addZone() iface: now it only takes name, creates data in it.

also completed the zone table deleter.

14 years ago[2172] refactor sysinfo tests
Jelte Jansen [Wed, 8 Aug 2012 22:16:34 +0000 (00:16 +0200)] 
[2172] refactor sysinfo tests

14 years ago[2100] ensure exception safety in ZoneTable::create using a holder class.
JINMEI Tatuya [Wed, 8 Aug 2012 21:32:32 +0000 (14:32 -0700)] 
[2100] ensure exception safety in ZoneTable::create using a holder class.

instead of using the ugly try-(catch-all)catch.

14 years ago[2172] fix osx sysinfo tests for previous change
Jelte Jansen [Wed, 8 Aug 2012 19:54:22 +0000 (12:54 -0700)] 
[2172] fix osx sysinfo tests for previous change

14 years ago[2172] fix page_size regex
Jelte Jansen [Wed, 8 Aug 2012 19:37:07 +0000 (12:37 -0700)] 
[2172] fix page_size regex

14 years ago[2172] rearrange freebsd/osx hierarchy
Jelte Jansen [Wed, 8 Aug 2012 19:05:25 +0000 (21:05 +0200)] 
[2172] rearrange freebsd/osx hierarchy

14 years ago[2096] Test decoding
Michal 'vorner' Vaner [Wed, 8 Aug 2012 18:37:04 +0000 (20:37 +0200)] 
[2096] Test decoding

Provide three more decoders of the data, using the RdataReader. This
does not link, as the reader has no bodies of the methods.

14 years ago[1959] Added multicast option on the socket if remote addr is multicast.
Marcin Siodelski [Wed, 8 Aug 2012 18:04:20 +0000 (20:04 +0200)] 
[1959] Added multicast option on the socket if remote addr is multicast.

14 years ago[1959] Added generation of DUID prefix if it is not given by user.
Marcin Siodelski [Wed, 8 Aug 2012 18:03:13 +0000 (20:03 +0200)] 
[1959] Added generation of DUID prefix if it is not given by user.

14 years agoMerge branch 'master' into trac2171
Mukund Sivaraman [Wed, 8 Aug 2012 15:55:46 +0000 (21:25 +0530)] 
Merge branch 'master' into trac2171

14 years ago[2164] Add RRset::getSIGRdataCount()
Mukund Sivaraman [Wed, 8 Aug 2012 15:48:25 +0000 (21:18 +0530)] 
[2164] Add RRset::getSIGRdataCount()

14 years ago[master] Add tests for RRSIG related parts of RRset class
Mukund Sivaraman [Wed, 8 Aug 2012 15:47:13 +0000 (21:17 +0530)] 
[master] Add tests for RRSIG related parts of RRset class

14 years ago[master] Untabify code
Mukund Sivaraman [Wed, 8 Aug 2012 15:46:10 +0000 (21:16 +0530)] 
[master] Untabify code

14 years ago[2096] Code reorganisation
Michal 'vorner' Vaner [Wed, 8 Aug 2012 15:26:16 +0000 (17:26 +0200)] 
[2096] Code reorganisation

The foreach functions to manually iterate over the data are used in
tests only, so moved to the tests.

The specifications are used by the tests and encoding and will be used
by the decoding machinery too, probably, so we are making them
accessible and reside in a separate file.

14 years ago[2096] (Unrelated) MessageRenderer isn't copyable
Michal 'vorner' Vaner [Wed, 8 Aug 2012 14:57:00 +0000 (16:57 +0200)] 
[2096] (Unrelated) MessageRenderer isn't copyable

Discovered the hard way - it can crash.

Small trick with just-in-time initialization of a pointer in benchmark
is used instead of copying it and relying on the fact that it can be
copied while it was not yet used.

14 years ago[2096] Test refactor: Make it type-parametric
Michal 'vorner' Vaner [Wed, 8 Aug 2012 14:35:53 +0000 (16:35 +0200)] 
[2096] Test refactor: Make it type-parametric

This will help checking the various supported interfaces to decoding.

14 years ago[2096] Move the test file
Michal 'vorner' Vaner [Wed, 8 Aug 2012 14:28:43 +0000 (16:28 +0200)] 
[2096] Move the test file

This is logically part of the next commit. But then, the git diff would
show the old file disappear and the new file appear with new content,
which would be hard to review, so it is split. This commit should
contain no changes in the content (hopefully), so can be skipped during
review.

14 years ago[2096] Fix stupid naming error
Michal 'vorner' Vaner [Wed, 8 Aug 2012 14:28:09 +0000 (16:28 +0200)] 
[2096] Fix stupid naming error

When changing the names, this kind of got forgotten.

14 years ago[master] Add logger_lockfile to .gitignore
Mukund Sivaraman [Wed, 8 Aug 2012 13:45:00 +0000 (19:15 +0530)] 
[master] Add logger_lockfile to .gitignore

14 years ago[2136] Changes regarding the test config file
Naoki Kambe [Wed, 8 Aug 2012 12:51:22 +0000 (21:51 +0900)] 
[2136] Changes regarding the test config file

- moved b10-config_test.db from src/bin/stats/tests to
  src/bin/stats/tests/testdata

- renamed its name to b10-config.db

- changed its format to multiline

These changes are due to the reviewer's comment.

14 years ago[2136] Update comment text
Mukund Sivaraman [Wed, 8 Aug 2012 05:32:03 +0000 (11:02 +0530)] 
[2136] Update comment text

14 years ago[2136] Minor whitespace update
Mukund Sivaraman [Wed, 8 Aug 2012 05:31:53 +0000 (11:01 +0530)] 
[2136] Minor whitespace update

14 years ago[2136] Remove redundant tests
Mukund Sivaraman [Wed, 8 Aug 2012 05:06:30 +0000 (10:36 +0530)] 
[2136] Remove redundant tests

14 years ago[2136] Indent code
Mukund Sivaraman [Wed, 8 Aug 2012 05:02:06 +0000 (10:32 +0530)] 
[2136] Indent code

14 years ago[2136] Assign and use intval earlier
Mukund Sivaraman [Wed, 8 Aug 2012 04:58:45 +0000 (10:28 +0530)] 
[2136] Assign and use intval earlier

14 years ago[2136] Add back part of a deleted comment
Mukund Sivaraman [Sun, 5 Aug 2012 15:00:14 +0000 (20:30 +0530)] 
[2136] Add back part of a deleted comment

14 years ago[2136] Make minor text updates
Mukund Sivaraman [Sun, 5 Aug 2012 14:59:59 +0000 (20:29 +0530)] 
[2136] Make minor text updates

14 years ago[2136] Re-indent code
Mukund Sivaraman [Sun, 5 Aug 2012 14:17:55 +0000 (19:47 +0530)] 
[2136] Re-indent code

14 years ago[2136] Make some minor changes to poll-interval's description
Mukund Sivaraman [Sun, 5 Aug 2012 13:01:38 +0000 (18:31 +0530)] 
[2136] Make some minor changes to poll-interval's description

14 years ago[2136] Updated the do_polling method
Naoki Kambe [Wed, 1 Aug 2012 07:54:54 +0000 (16:54 +0900)] 
[2136] Updated the do_polling method

A list of instances for stats to request is obtained from the show_processes
command of Boss instead of asking the components config of Boss.

14 years ago[2136] Updated the "show_processes" to provide address of each module
Naoki Kambe [Wed, 1 Aug 2012 07:19:38 +0000 (16:19 +0900)] 
[2136] Updated the "show_processes" to provide address of each module

This information is used for other module e.g. stats to count running instances
of same module. The address information is seen in the third index of the
array.

14 years ago[2136] Introduced an address() method for the Component classes
Naoki Kambe [Wed, 1 Aug 2012 10:13:08 +0000 (19:13 +0900)] 
[2136] Introduced an address() method for the Component classes

It returns the "_address" attribute of the classes. This is used for the
"show_processes" command of Boss to provide address information.

14 years ago[2136] Updated the 'show' command handler
Naoki Kambe [Wed, 1 Aug 2012 06:47:21 +0000 (15:47 +0900)] 
[2136] Updated the 'show' command handler

The stats module decides if polling should be done by the the last time of
polling. If more than one seconds past since the last request to each module,
the stats module requests each module statistics data and then shows the latest
result. Otherwise, the stats module just shows statistics data which it has.

14 years ago[2136] Separated the updating process from the receiving process
Naoki Kambe [Wed, 1 Aug 2012 06:37:23 +0000 (15:37 +0900)] 
[2136] Separated the updating process from the receiving process

In the updating process, it communicates with the cfgmgr module for updating
statistics specification of each module. This fix is for separating such mixed
communication process.

14 years ago[2136] Revised the test scripts and the config db file
Naoki Kambe [Tue, 31 Jul 2012 11:13:27 +0000 (20:13 +0900)] 
[2136] Revised the test scripts and the config db file

- Fixed the incorrect previous fix.
  There should not be the inconsistency on number of mock Auth instances on
  both test scripts: b10-stats_test.py and b10-stats-httpd_test.py. In the
  previous change, there was the inconsistency in MockBoss class. Actually in
  b10-stats-httpd_test.py, the number of auth instances which Cfgmgr answers
  was four, but the number of actually invoked auth instances was one.

- Reduce the number of invoked mock Auth instances
  In theses test scripts, multiple Auth instances need to be invoked. But if
  four instances are actually invoked in these scripts, open files(ulimit -n)
  exceeds 256. In the environment where ulimit -n was set to 256, the
  b10-stats-httpd_test.py test failed actually.  In that case,
  b10-stats-httpd_test.py needs open files more than 256.  So the number of the
  auth instances in mock modules was reduced into 2 in the scripts. This fix is
  for the comment at #2136.

14 years ago[2136] Fixed unfinished MockAuth objects
Naoki Kambe [Fri, 27 Jul 2012 01:16:51 +0000 (10:16 +0900)] 
[2136] Fixed unfinished MockAuth objects

The extra MockAuth objects didn't shut down in
BaseModules.shutdown(). But these weren't needed for unittest of stats
httpd. So setting up and shutting up of them were moved to
b10-stats_test.py from test_utils.py.

14 years ago[2136] some small suggested wording fixes to doc.
JINMEI Tatuya [Fri, 27 Jul 2012 00:59:20 +0000 (17:59 -0700)] 
[2136] some small suggested wording fixes to doc.

14 years ago[2136] Fixed wrong checking: The variable key was assumed to be constant.
Naoki Kambe [Tue, 24 Jul 2012 10:18:13 +0000 (19:18 +0900)] 
[2136] Fixed wrong checking: The variable key was assumed to be constant.

14 years ago[2136] Removed 'trees' argument from 'getstats' command
Naoki Kambe [Tue, 24 Jul 2012 07:23:31 +0000 (16:23 +0900)] 
[2136] Removed 'trees' argument from 'getstats' command

14 years ago[2136] Refactoring unittest and update to evaluate the next_polltime value as a
Naoki Kambe [Tue, 24 Jul 2012 00:44:20 +0000 (09:44 +0900)] 
[2136] Refactoring unittest and update to evaluate the next_polltime value as a
integer

14 years ago[2136] Updated not to calculate next timing based on current timestamp in every
Naoki Kambe [Mon, 23 Jul 2012 10:47:25 +0000 (19:47 +0900)] 
[2136] Updated not to calculate next timing based on current timestamp in every
polling

14 years ago[2136] moved creation of a stats.Stats object in each test case
Naoki Kambe [Mon, 23 Jul 2012 05:33:34 +0000 (14:33 +0900)] 
[2136] moved creation of a stats.Stats object in each test case

14 years ago[2136] kept consistency in unittest due to the previous changes
Naoki Kambe [Sun, 22 Jul 2012 04:10:32 +0000 (13:10 +0900)] 
[2136] kept consistency in unittest due to the previous changes

14 years ago[2136] do group_sendmsg too all modules then do group_recvmsg in
Naoki Kambe [Sat, 21 Jul 2012 17:06:45 +0000 (02:06 +0900)] 
[2136] do group_sendmsg too all modules then do group_recvmsg in
do_polling for efficiency

Also added setting timeout value to one second for precise and
refactoring timeout handling

14 years ago[2136] added a new message id for getting invalid statistics data from the
Naoki Kambe [Sat, 21 Jul 2012 17:05:44 +0000 (02:05 +0900)] 
[2136] added a new message id for getting invalid statistics data from the
module

14 years ago[2136] updated bind10-guide.* due to removing set command from stats module
Naoki Kambe [Sat, 21 Jul 2012 14:37:59 +0000 (23:37 +0900)] 
[2136] updated bind10-guide.* due to removing set command from stats module

14 years ago[2136] added some misc changes
Naoki Kambe [Sat, 21 Jul 2012 14:23:02 +0000 (23:23 +0900)] 
[2136] added some misc changes

Changes in b10-stats_test.py:
 - added deeply checking statistics values of each of module and
   instance

 - added stats_server.shutdown() at the end of the test_config method.
   Because the running stats_server was never shut down even after
   stats_server.run() was invoked.

Changes in test_utils.py:
 - Changed the way of invoking multiple auth instances just for efficiency

14 years ago[2136] renamed 'pid' to 'mid' and change the default value -1 to None on
Naoki Kambe [Wed, 25 Jul 2012 02:46:42 +0000 (11:46 +0900)] 
[2136] renamed 'pid' to 'mid' and change the default value -1 to None on
the second argument of the the 'update_statistics_data' method

Instead of PID(Process Id) used in previous version of stats codes,
'mid' (module id) is used for identifying multiple instances of same
module. 'lname' of CC-session in stats codes is assigned to it.

14 years ago[2136] removed the obsoleted command 'sendstats' from the mock modules
Naoki Kambe [Sat, 21 Jul 2012 17:24:16 +0000 (02:24 +0900)] 
[2136] removed the obsoleted command 'sendstats' from the mock modules

14 years ago[2136] removed 'set' command and introduced a 'poll-interval' config item
Naoki Kambe [Sat, 21 Jul 2012 12:51:31 +0000 (21:51 +0900)] 
[2136] removed 'set' command and introduced a 'poll-interval' config item

The description about 'set' command was removed from the manpages, and
A 'poll-interval' config item was introduced into the manpages. Also
the implement, the testcases and specification related to the set
command were removed from source codes and the specfile.

14 years ago[master] Merge branch 'trac1958'
Marcin Siodelski [Wed, 8 Aug 2012 11:32:53 +0000 (13:32 +0200)] 
[master] Merge branch 'trac1958'

Conflicts:
tests/tools/perfdhcp/Makefile.am

14 years agoStatistics data transfer method is changed
Kazunori Fujiwara [Wed, 8 Aug 2012 07:28:42 +0000 (16:28 +0900)] 
Statistics data transfer method is changed
 from peliodic sending via statistics channel
 to passive retrieval via config session

- Added "getstats" command to retrieve statistics data via config session.
  = type "Auth getstats" command using bindctl shows statistics data.
- Removed StatisticsIntervalTimer
- Removed "sendstats" command
- Changed that each config command can return values.
  - returns Element::createlist(), Element::fromJSON("{}") or Statistics

Opinion:
- Each command should return conditions and values using createAnswer()
   rather than using throw/catch.

14 years ago[2100] simplify: move definitions to the main class instead of pimpl.
JINMEI Tatuya [Wed, 8 Aug 2012 06:59:44 +0000 (23:59 -0700)] 
[2100] simplify: move definitions to the main class instead of pimpl.

this is mostly private class and is not expected to be referenced outside
of this psuedo module ("memory"), so it's raltively safer.
also, the ZoneTable structure will be embedable in a shared memory space,
so introducing the another pointer indirection will make it unnecessarily
complicated.

still don't pass tests.

14 years ago[2100] make the new implementation compile.
JINMEI Tatuya [Wed, 8 Aug 2012 06:45:21 +0000 (23:45 -0700)] 
[2100] make the new implementation compile.

added a mostly-empty implementation of ZoneData.
at this point it's nothing more than "buildable" code.  tests still don't pass.

14 years ago[2100] copy the old zone table implementation and tests under "memory" dir.
JINMEI Tatuya [Wed, 8 Aug 2012 01:06:40 +0000 (18:06 -0700)] 
[2100] copy the old zone table implementation and tests under "memory" dir.

right now it's a naive copy.  the test wouldn't even compile.

14 years ago[2172] fixed a trivial typo
JINMEI Tatuya [Tue, 7 Aug 2012 23:56:52 +0000 (16:56 -0700)] 
[2172] fixed a trivial typo

14 years ago[1959] Enabled Solicit packets creation and send.
Marcin Siodelski [Tue, 7 Aug 2012 18:10:47 +0000 (20:10 +0200)] 
[1959] Enabled Solicit packets creation and send.

14 years ago[1958] Implemented changes suggested in the second code review.
Marcin Siodelski [Tue, 7 Aug 2012 14:29:40 +0000 (15:29 +0100)] 
[1958] Implemented changes suggested in the second code review.

14 years ago[2096] Help for the RDataReader interface
Michal 'vorner' Vaner [Tue, 7 Aug 2012 13:57:15 +0000 (15:57 +0200)] 
[2096] Help for the RDataReader interface

Including the expected usage scenarios.

Also, the interface was slightly refined - renaming of things, adding
support for the RRSig iteration.

14 years ago[1959] Add some more comments to the test_control.cc
Marcin Siodelski [Tue, 7 Aug 2012 13:00:14 +0000 (15:00 +0200)] 
[1959] Add some more comments to the test_control.cc

14 years ago[1959] Enable broadcast addresses for perfdhcp's DHCPv4 mode.
Marcin Siodelski [Tue, 7 Aug 2012 12:45:06 +0000 (14:45 +0200)] 
[1959] Enable broadcast addresses for perfdhcp's DHCPv4 mode.

14 years ago[1959] Enable use of broadcast remote address.
Marcin Siodelski [Tue, 7 Aug 2012 12:43:09 +0000 (14:43 +0200)] 
[1959] Enable use of broadcast remote address.

14 years ago[2172] Add OSX support to isc-sysinfo
Jelte Jansen [Mon, 6 Aug 2012 15:22:00 +0000 (08:22 -0700)] 
[2172] Add OSX support to isc-sysinfo

Mostly the same as FreeBSD, except for swap usage

14 years ago[2096] Interface of the RDataReader
Michal 'vorner' Vaner [Mon, 6 Aug 2012 13:23:06 +0000 (15:23 +0200)] 
[2096] Interface of the RDataReader

The oposite of the isc::datasrc::memory::RDataEncoder.

Only the methods are drafted, no documentation yet and no member
variables listed.

14 years ago[1959] Set packet v4 defaults correctly
Marcin Siodelski [Mon, 6 Aug 2012 13:07:07 +0000 (15:07 +0200)] 
[1959] Set packet v4 defaults correctly

14 years ago[2066] docs: Update links to the ACL chapter
Michal 'vorner' Vaner [Mon, 6 Aug 2012 11:40:11 +0000 (13:40 +0200)] 
[2066] docs: Update links to the ACL chapter

Instead of talking the same over and over again, we now link the common
ACL chapter.

14 years agoMerge #2133
Michal 'vorner' Vaner [Mon, 6 Aug 2012 10:38:06 +0000 (12:38 +0200)] 
Merge #2133

14 years ago[2133] Minor fix
Michal 'vorner' Vaner [Mon, 6 Aug 2012 10:36:06 +0000 (12:36 +0200)] 
[2133] Minor fix

The previous version was slightly misleading, the reader could
understand it the queries would be just slow as answered from the DB,
instead of not answered at all.

14 years ago[2066] docs/ACLs: Some examples and how to bindctl it
Michal 'vorner' Vaner [Mon, 6 Aug 2012 10:01:11 +0000 (12:01 +0200)] 
[2066] docs/ACLs: Some examples and how to bindctl it

14 years ago[2133] a few small changes in the new documentation
Jelte Jansen [Mon, 6 Aug 2012 09:46:56 +0000 (11:46 +0200)] 
[2133] a few small changes in the new documentation

14 years ago[master] update changelog for merge of 2126
Jelte Jansen [Mon, 6 Aug 2012 07:49:13 +0000 (09:49 +0200)] 
[master] update changelog for merge of 2126

since the b10-showtech had not been released yet, I just replaced its name in the existing changelog entry

14 years ago[master] Merge branch 'trac2126'
Jelte Jansen [Mon, 6 Aug 2012 07:32:06 +0000 (09:32 +0200)] 
[master] Merge branch 'trac2126'

14 years ago[1959] Receive packets from the server.
Marcin Siodelski [Sat, 4 Aug 2012 09:41:46 +0000 (10:41 +0100)] 
[1959] Receive packets from the server.

14 years ago[master] Update .gitignore files
Mukund Sivaraman [Fri, 3 Aug 2012 20:43:30 +0000 (02:13 +0530)] 
[master] Update .gitignore files

14 years ago[2171] Set g+s,g+w permissions on localstatedir
Mukund Sivaraman [Fri, 3 Aug 2012 20:41:41 +0000 (02:11 +0530)] 
[2171] Set g+s,g+w permissions on localstatedir

This is usually $prefix/var/bind10-devel/. We set mode to 2770 oct.

14 years ago[2171] Remove redundant mkdir (already exists in cfgmgr)
Mukund Sivaraman [Fri, 3 Aug 2012 20:40:42 +0000 (02:10 +0530)] 
[2171] Remove redundant mkdir (already exists in cfgmgr)

Besides, loadzone doesn't do anything with this directory.

14 years ago[2066] Explain ACLs
Michal 'vorner' Vaner [Fri, 3 Aug 2012 19:01:06 +0000 (21:01 +0200)] 
[2066] Explain ACLs

Not complete. Split done at the end of the day, without too much logic
at which point.

14 years ago[master] changelog for #2147
JINMEI Tatuya [Fri, 3 Aug 2012 17:00:01 +0000 (10:00 -0700)] 
[master] changelog for #2147

14 years ago[master] Merge branch 'trac2147'
JINMEI Tatuya [Fri, 3 Aug 2012 16:55:11 +0000 (09:55 -0700)] 
[master] Merge branch 'trac2147'

14 years ago[1959] Documentation cleanup.
Marcin Siodelski [Fri, 3 Aug 2012 15:56:48 +0000 (16:56 +0100)] 
[1959] Documentation cleanup.

14 years agoMerge branch 'master' into trac2105
Mukund Sivaraman [Fri, 3 Aug 2012 14:27:55 +0000 (19:57 +0530)] 
Merge branch 'master' into trac2105