BIND 10 trac1531, updated. 1b9ab32f79fe18b25a378808192cc2f8f5f6c718 [1531] Initial pages for Developer's Guide

BIND 10 source code commits bind10-changes at lists.isc.org
Fri Jan 27 13:36:51 UTC 2012


The branch, trac1531 has been updated
       via  1b9ab32f79fe18b25a378808192cc2f8f5f6c718 (commit)
      from  0dc861f4c32cfd154904819d5c4b8dff71fdc47c (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 1b9ab32f79fe18b25a378808192cc2f8f5f6c718
Author: Tomek Mrugalski <tomasz at isc.org>
Date:   Fri Jan 27 14:36:29 2012 +0100

    [1531] Initial pages for Developer's Guide

-----------------------------------------------------------------------

Summary of changes:
 doc/devel/00-mainpage.dox |   28 ++++++++++++++++++++++++++++
 doc/devel/01-dns.dox      |   14 ++++++++++++++
 doc/devel/02-dhcp.dox     |   32 ++++++++++++++++++++++++++++++++
 3 files changed, 74 insertions(+), 0 deletions(-)
 create mode 100644 doc/devel/00-mainpage.dox
 create mode 100644 doc/devel/01-dns.dox
 create mode 100644 doc/devel/02-dhcp.dox

-----------------------------------------------------------------------
diff --git a/doc/devel/00-mainpage.dox b/doc/devel/00-mainpage.dox
new file mode 100644
index 0000000..1ebda2b
--- /dev/null
+++ b/doc/devel/00-mainpage.dox
@@ -0,0 +1,28 @@
+/**
+ *
+ * @mainpage BIND10 Developer's Guide
+ *
+ * Welcome to BIND10 Developer's Guide. This documentation is addressed
+ * at existing and prospecting developers and programmers, who would like
+ * to gain insight into internal workings of BIND 10.
+ *
+ * If you are a user or system administrator, rather than software engineer,
+ * you should read BIND10 Guide instead.
+ *
+ * @section DNS
+ * - @subpage DataScrubbing
+ * @section DHCP
+
+ * - @subpage dhcpv4
+ * - @subpage dhcpv6
+ * - @subpage libdhcp
+ *
+ * @section Miscellaneous topics
+ * - @subpage LoggingApi
+ *   - @subpage LoggingApiOverview
+ *   - @subpage LoggingApiLoggerNames
+ *   - @subpage LoggingApiLoggingMessages
+ * - @subpage SocketSessionUtility
+ *
+ * <a href="./doxygen-error.log">Documentation warnings and errors</a>
+ */
\ No newline at end of file
diff --git a/doc/devel/01-dns.dox b/doc/devel/01-dns.dox
new file mode 100644
index 0000000..e72dbbd
--- /dev/null
+++ b/doc/devel/01-dns.dox
@@ -0,0 +1,14 @@
+/**
+ *
+ * @page dns BIND10 DNS
+ *
+ * @section dns-auth b10-auth
+ *
+ * @todo: Describe b10-auth here.
+ *
+ * @section b10-cfgmgr b10-cfgmgr Overview
+ *
+ * @todo: Descibe b10-cfgmgr here.
+ *
+ *
+ */
diff --git a/doc/devel/02-dhcp.dox b/doc/devel/02-dhcp.dox
new file mode 100644
index 0000000..d0a2a6b
--- /dev/null
+++ b/doc/devel/02-dhcp.dox
@@ -0,0 +1,32 @@
+/**
+ * @page dhcpv4 DHCPv4 Component
+ *
+ * BIND10 offers DHCPv4 server implementation. It is implemented as b10-dhcp4 component.
+ * It's primary code is located in isc::dhcp::Dhcpv4Srv class. It uses \ref libdhcp extensively,
+ * especially isc::dhcp::Pkt4, isc::dhcp::Option and isc::dhcp::IfaceMgr classes.
+ *
+ * @todo Describe DHCPv4 component properly.
+ * 
+ * @page dhcpv6 DHCPv6 Component
+ *
+ * @todo DHCPv6 component will be described here.
+ * 
+ * @page libdhcp libdhcp++ library
+ *
+ * @section libdhcpIntro Libdhcp++ Introduction
+ *
+ * libdhcp++ is an all-purpose DHCP-manipulation library, written in C++. It offers packet 
+ * parsing and assembly, DHCPv4 and DHCPv6 options parsing and assembly, interface detection
+ * (currently on Linux systems only) and socket operations. Following classes are implemented:
+ *
+ * - isc::dhcp::Pkt4 - represents DHCPv4 packet.
+ * - isc::dhcp::Pkt6 - represents DHCPv6 packet.
+ *
+ * @section lidhcpIfaceMgr Interface Manager
+ *
+ * Interface Manager (or IfaceMgr) is an abstraction layer about low-level network operations.
+ * In particlar, it provides information about existing network interfaces See isc::dhcp::IfaceMgr::Iface 
+ * class and isc::dhcp::IfaceMgr::detectIfaces() and isc::dhcp::IfaceMgr::getIface().
+ * Another useful methods are dedicated to transmission (isc::dhcp::IfaceMgr::send(), 2 overloads) 
+ * and reception (isc::dhcp::IfaceMgr::receive4() and isc::dhcp::IfaceMgr::receive6()).
+ */
\ No newline at end of file




More information about the bind10-changes mailing list