summaryrefslogtreecommitdiffstats
path: root/src/lib/hooks
diff options
context:
space:
mode:
authorFrancis Dupont <fdupont@isc.org>2018-06-29 18:16:07 +0200
committerMarcin Siodelski <marcin@isc.org>2018-06-29 20:14:13 +0200
commit842234ba3783c812c4cabc188cba087cfdda22dd (patch)
tree0d4f72aab8bfb2b92e04ca1b1af885912766067c /src/lib/hooks
parent[5664] Fix callout status propagation in Alloc Engine. (diff)
downloadkea-842234ba3783c812c4cabc188cba087cfdda22dd.tar.xz
kea-842234ba3783c812c4cabc188cba087cfdda22dd.zip
[5664] spelling
Diffstat (limited to 'src/lib/hooks')
-rw-r--r--src/lib/hooks/callout_handle.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/hooks/callout_handle.h b/src/lib/hooks/callout_handle.h
index 75e5e66ab2..c7356aa251 100644
--- a/src/lib/hooks/callout_handle.h
+++ b/src/lib/hooks/callout_handle.h
@@ -419,14 +419,14 @@ typedef boost::shared_ptr<CalloutHandle> CalloutHandlePtr;
/// resets handle's state.
///
/// The Kea servers often require to associate processed packets with
-/// @c CalloutHandle instances. This is to faciliate the case when the
+/// @c CalloutHandle instances. This is to facilitate the case when the
/// hooks library passes information between the callouts using the
/// 'context' stored in the callout handle. The callouts invoked throughout
/// the packet lifetime have access to the context information for the
/// given packet.
///
/// The association between the packets and the callout handles is
-/// achived by giving the ownership of the @c CalloutHandle objects to
+/// achieved by giving the ownership of the @c CalloutHandle objects to
/// the @c Pkt objects. When the @c Pkt object goes out of scope, it should
/// also release the pointer to the owned @c CalloutHandle object.
/// However, this causes a risk of circular dependency between the shared