BIND 10 trac2861, updated. e746e58a9fec019dd8a944baeed75c685a6cdf28 [2861] Little bit of documentation
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Jul 10 07:21:51 UTC 2013
The branch, trac2861 has been updated
via e746e58a9fec019dd8a944baeed75c685a6cdf28 (commit)
from bc25129780f807429a8c9f4cec569ed35f6b066c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit e746e58a9fec019dd8a944baeed75c685a6cdf28
Author: Michal 'vorner' Vaner <michal.vaner at nic.cz>
Date: Wed Jul 10 09:19:18 2013 +0200
[2861] Little bit of documentation
-----------------------------------------------------------------------
Summary of changes:
src/bin/auth/datasrc_clients_mgr.h | 9 +++++++++
1 file changed, 9 insertions(+)
-----------------------------------------------------------------------
diff --git a/src/bin/auth/datasrc_clients_mgr.h b/src/bin/auth/datasrc_clients_mgr.h
index 2a54dcf..33698cc 100644
--- a/src/bin/auth/datasrc_clients_mgr.h
+++ b/src/bin/auth/datasrc_clients_mgr.h
@@ -94,14 +94,23 @@ typedef boost::function<void ()> FinishedCallback;
/// This just holds the data items together, no logic or protection
/// is present here.
struct Command {
+ /// \brief Constructor
+ ///
+ /// It just initializes the member variables of the same names
+ /// as the parameters.
Command(CommandID id, const data::ConstElementPtr& params,
const FinishedCallback& callback) :
id(id),
params(params),
callback(callback)
{}
+ /// \brief The command to execute
CommandID id;
+ /// \brief Argument of the command.
+ ///
+ /// If the command takes no argument, it should be null pointer.
data::ConstElementPtr params;
+ /// \brief A callback to be called once the command finishes.
FinishedCallback callback;
};
More information about the bind10-changes
mailing list