mainpage.dox 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. // Copyright (C) 2012-2017 Internet Systems Consortium, Inc. ("ISC")
  2. //
  3. // This Source Code Form is subject to the terms of the Mozilla Public
  4. // License, v. 2.0. If a copy of the MPL was not distributed with this
  5. // file, You can obtain one at http://mozilla.org/MPL/2.0/.
  6. /**
  7. * @mainpage Kea Developer's Guide
  8. *
  9. * Welcome to the Kea Developer's Guide. This documentation is addressed at
  10. * either existing or prospective Kea developers and contributors, and
  11. * provides information needed to extend and maintain Kea source code.
  12. * If you wish to write hook code - the code that is loaded by Kea at
  13. * run-time and modifies its behavior, you should read the section
  14. * @ref hooksdgDevelopersGuide.
  15. *
  16. * Kea maintenance information is divided into a number of sections.
  17. * Information on DHCP-specific topics can be found
  18. * in the @ref dhcpMaintenanceGuide. General topics are discussed in
  19. * @ref miscellaneousTopics.
  20. *
  21. * If you are a user or system administrator, rather than software engineer,
  22. * you should read the
  23. * <a href="http://kea.isc.org/docs/kea-guide.html">Kea
  24. * Administrator Reference Manual</a> instead. If you are using a beta or
  25. * development version of Kea, the
  26. * <a href="http://git.kea.isc.org/~tester/kea/guide/kea-guide.html">
  27. * development version of the manual</a> is recommended.
  28. *
  29. * Regardless of your field of expertise, you are encouraged to visit the
  30. * <a href="http://kea.isc.org/">Kea webpage (http://kea.isc.org)</a>
  31. *
  32. * @section contrib Contributor's Guide
  33. * - @subpage contributorGuide - This page describes the process of sending
  34. * a patch to ISC and what happens next. Please read it if you are considering
  35. * sending us any code.
  36. *
  37. * @section buildingKeaWithUnitTests Building Kea with Unit tests
  38. * - @subpage unitTests
  39. * - @subpage unitTestsIntroduction
  40. * - @subpage unitTestsEnvironmentVariables
  41. * - @subpage unitTestsDatabaseConfig
  42. *
  43. * @section hooksFramework Hooks Framework
  44. * - @subpage hooksdgDevelopersGuide
  45. * - @subpage dhcpv4Hooks
  46. * - @subpage dhcpv6Hooks
  47. * - @subpage agentHooks
  48. * - @subpage hooksComponentDeveloperGuide
  49. * - @subpage hooksmgMaintenanceGuide
  50. * - @subpage libdhcp_user_chk
  51. * - @subpage libdhcp_lease_cmds
  52. *
  53. * @section dhcpMaintenanceGuide DHCP Maintenance Guide
  54. * - @subpage dhcp4
  55. * - @subpage dhcpv4ConfigParser
  56. * - @subpage dhcpv4ConfigInherit
  57. * - @subpage dhcpv4OptionsParse
  58. * - @subpage dhcpv4DDNSIntegration
  59. * - @subpage dhcpv4Classifier
  60. * - @subpage dhcpv4ConfigBackend
  61. * - @subpage dhcpv4SignalBasedReconfiguration
  62. * - @subpage dhcpv4Other
  63. * - @subpage dhcpv4o6Dhcp4
  64. * - @subpage dhcp6
  65. * - @subpage dhcpv6ConfigParser
  66. * - @subpage dhcpv6ConfigInherit
  67. * - @subpage dhcpv6DDNSIntegration
  68. * - @subpage dhcpv6OptionsParse
  69. * - @subpage dhcpv6Classifier
  70. * - @subpage dhcpv6ConfigBackend
  71. * - @subpage dhcpv6SignalBasedReconfiguration
  72. * - @subpage dhcpv6Other
  73. * - @subpage dhcpv4o6Dhcp6
  74. * - @subpage d2
  75. * - @subpage d2ProcessDerivation
  76. * - @subpage d2ConfigMgt
  77. * - @subpage d2NCRReceipt
  78. * - @subpage d2DDNSUpdateExecution
  79. * - @subpage d2EventLoop
  80. * - @subpage d2TransDetail
  81. * - @subpage d2StateModel
  82. * - @subpage d2TransExecExample
  83. * - @subpage controlAgent
  84. * - @subpage ctrlAgentHttp
  85. * - @subpage ctrlAgentCreatingResponse
  86. * - @subpage ctrlAgentCommandMgr
  87. * - @subpage CtrlAgentSecurity
  88. * - @subpage lfc
  89. * - @subpage lfcProcessing
  90. * - @subpage lfcFiles
  91. * - @subpage ctrlSocket
  92. * - @subpage ctrlSocketOverview
  93. * - @subpage ctrlSocketClient
  94. * - @subpage ctrlSocketImpl
  95. * - @subpage ctrlSocketConnections
  96. * - @subpage dhcpDatabaseBackends
  97. * - @subpage configBackend
  98. * - @subpage configBackendJSONDesign
  99. * - @subpage perfdhcpInternals
  100. *
  101. * @section libraries Kea libraries
  102. * - @subpage libcc
  103. * - @subpage libdhcp
  104. * - @subpage libdhcpIntro
  105. * - @subpage libdhcpRelay
  106. * - @subpage libdhcpIfaceMgr
  107. * - @subpage libdhcpPktFilter
  108. * - @subpage libdhcpPktFilter6
  109. * - @subpage libdhcpErrorLogging
  110. * - @subpage libdhcp_ddns
  111. * - @subpage libdhcpsrv
  112. * - @subpage leasemgr
  113. * - @subpage cfgmgr
  114. * - @subpage hostmgr
  115. * - @subpage optionsConfig
  116. * - @subpage allocengine
  117. * - @subpage timerManager
  118. * - @subpage leaseReclamationRoutine
  119. * - @subpage subnetSelect
  120. * - @subpage dhcp4o6Ipc
  121. * - @subpage libeval
  122. * - @subpage libprocess
  123. * - @subpage cpl
  124. * - @subpage cplSignals
  125. *
  126. * @section miscellaneousTopics Miscellaneous Topics
  127. * - @subpage terminology
  128. * - @subpage parser
  129. * - @subpage logKeaLogging
  130. * - @subpage logBasicIdeas
  131. * - @subpage logDeveloperUse
  132. * - @subpage logNotes
  133. * - @subpage LoggingApi
  134. * - @subpage SocketSessionUtility
  135. * - <a href="./doxygen-error.log">Documentation warnings and errors</a>
  136. *
  137. */