123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- // Copyright (C) 2012-2015 Internet Systems Consortium, Inc. ("ISC")
- //
- // Permission to use, copy, modify, and/or distribute this software for any
- // purpose with or without fee is hereby granted, provided that the above
- // copyright notice and this permission notice appear in all copies.
- //
- // THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
- // REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- // AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
- // INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- // LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- /**
- * @mainpage Kea Developer's Guide
- *
- * Welcome to Kea Developer's Guide. This documentation is addressed at
- * either existing or prospective Kea developers and contributors, and
- * provides information needed to extend and maintain Kea.
- * If you wish to write "hook" code - code that is loaded by Kea at
- * run-time and modifies its behavior, you should read the section
- * @ref hooksdgDevelopersGuide.
- *
- * Kea maintenance information is divided into a number of sections
- * depending on focus. Information on DHCP-specific topics can be found
- * in the @ref dhcpMaintenanceGuide. General topics, are discussed in
- * @ref miscellaneousTopics.
- *
- * If you are a user or system administrator, rather than software engineer,
- * you should read the
- * <a href="http://kea.isc.org/docs/kea-guide.html">Kea
- * Administrator Reference Manual</a> instead. If you are using a beta or
- * development version of Kea, the
- * <a href="http://git.kea.isc.org/~tester/kea/guide/kea-guide.html">
- * development version of the manual</a> is recommended.
- *
- * Regardless of your field of expertise, you are encouraged to visit the
- * <a href="http://kea.isc.org/">Kea webpage (http://kea.isc.org)</a>
- *
- * @section contrib Contributor's Guide
- * - @subpage contributorGuide
- *
- * @section hooksFramework Hooks Framework
- * - @subpage hooksdgDevelopersGuide
- * - @subpage dhcpv4Hooks
- * - @subpage dhcpv6Hooks
- * - @subpage hooksComponentDeveloperGuide
- * - @subpage hooksmgMaintenanceGuide
- * - @subpage libdhcp_user_chk
- *
- * @section dhcpMaintenanceGuide DHCP Maintenance Guide
- * - @subpage dhcp4
- * - @subpage dhcpv4ConfigParser
- * - @subpage dhcpv4ConfigInherit
- * - @subpage dhcpv4OptionsParse
- * - @subpage dhcpv4DDNSIntegration
- * - @subpage dhcpv4Classifier
- * - @subpage dhcpv4ConfigBackend
- * - @subpage dhcpv4SignalBasedReconfiguration
- * - @subpage dhcpv4Other
- * - @subpage dhcp6
- * - @subpage dhcpv6ConfigParser
- * - @subpage dhcpv6ConfigInherit
- * - @subpage dhcpv6DDNSIntegration
- * - @subpage dhcpv6OptionsParse
- * - @subpage dhcpv6Classifier
- * - @subpage dhcpv6ConfigBackend
- * - @subpage dhcpv6SignalBasedReconfiguration
- * - @subpage dhcpv6Other
- * - @subpage d2
- * - @subpage d2CPL
- * - @subpage d2ProcessDerivation
- * - @subpage d2ConfigMgt
- * - @subpage d2NCRReceipt
- * - @subpage d2DDNSUpdateExecution
- * - @subpage d2EventLoop
- * - @subpage d2TransDetail
- * - @subpage d2StateModel
- * - @subpage d2TransExecExample
- * - @subpage lfc
- * - @subpage lfcProcessing
- * - @subpage lfcFiles
- * - @subpage ctrlSocket
- * - @subpage ctrlSocketOverview
- * - @subpage ctrlSocketClient
- * - @subpage ctrlSocketImpl
- * - @subpage ctrlSocketConnections
- * - @subpage libdhcp
- * - @subpage libdhcpIntro
- * - @subpage libdhcpRelay
- * - @subpage libdhcpIfaceMgr
- * - @subpage libdhcpPktFilter
- * - @subpage libdhcpPktFilter6
- * - @subpage libdhcpErrorLogging
- * - @subpage libdhcpsrv
- * - @subpage leasemgr
- * - @subpage cfgmgr
- * - @subpage hostmgr
- * - @subpage optionsConfig
- * - @subpage allocengine
- * - @subpage libdhcp_ddns
- * - @subpage dhcpDatabaseBackends
- * - @subpage configBackend
- * - @subpage configBackendMotivation
- * - @subpage configBackendJSONDesign
- * - @subpage configBackendAdding
- * - @subpage perfdhcpInternals
- *
- * @section qa Quality Assurance
- * - @subpage qaUnitTests
- *
- * @section miscellaneousTopics Miscellaneous Topics
- * - @subpage logKeaLogging
- * - @subpage logBasicIdeas
- * - @subpage logDeveloperUse
- * - @subpage logNotes
- * - @subpage LoggingApi
- * - @subpage SocketSessionUtility
- * - <a href="./doxygen-error.log">Documentation warnings and errors</a>
- *
- */
|