]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[5132] spelling
authorFrancis Dupont <fdupont@isc.org>
Thu, 30 Mar 2017 19:37:12 +0000 (21:37 +0200)
committerFrancis Dupont <fdupont@isc.org>
Thu, 30 Mar 2017 19:37:12 +0000 (21:37 +0200)
doc/guide/hooks.xml
premium [new submodule]
src/bin/dhcp4/dhcp4_hooks.dox
src/bin/dhcp4/dhcp4_messages.mes
src/bin/dhcp6/dhcp6_hooks.dox
src/lib/eval/evaluate.cc

index 4ae200b0cb8009acf9a3464a2dd98c1468d9b148..ca451b58d316130333ad237fb6f449555a0e9ba8 100644 (file)
               example and create your own custom logging hooks.</entry>
             </row>
             <row>
-              <entry>Flexible Indentifier</entry>
+              <entry>Flexible Identifier</entry>
               <entry>Support customers</entry>
               <entry>Kea 1.2.0 beta</entry>
               <entry>Kea software provides a way to handle host reservations
               combination of several options and fields to uniquely identify a
               client. Those scenarios are addressed by the Flexible Identifiers
               hook application. It allows defining an expression, similar to
-              the one used in client classifiation,
+              the one used in client classification,
              e.g. substring(relay6[0].option[37],0,6). Each incoming packet is
              evaluated against that expression and its value is then searched
              in the reservations database.
diff --git a/premium b/premium
new file mode 160000 (submodule)
index 0000000..f6008c5
--- /dev/null
+++ b/premium
@@ -0,0 +1 @@
+Subproject commit f6008c55962332a5261d3d9f1973771c870e1c47
index 691c4807ba178ecd73190630290ce367a7c048ed..3e0a120a7564531535d0157397de56d2c93d1539 100644 (file)
@@ -115,9 +115,9 @@ to the end of this list.
    - name: @b id_type, type isc::dhcp::Host::IdentifierType, direction: <b>in/out</b>
    - name: @b id_value, type std::vector<uint8_t>, direction: <b>out</b>
 
- - @b Description: this callout is executed only if flexible identifers are
+ - @b Description: this callout is executed only if flexible identifiers are
    enabled, i.e. host-reservation-identifiers contain 'flex-id' value. This
-   callout enables external library to provide values for flexible identifers.
+   callout enables external library to provide values for flexible identifiers.
    To be able to use this feature, flex_id hook library is needed.
 
  - <b>Next step status</b>: If a callout installed on the "host4_identifier" hook
index b50e173ad99c3404a3c56f5b8256a105b0676f15..c1b8b2225047ae8dfb3e0d3918b2e325d5a6a39a 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2012-2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012-2017 Internet Systems Consortium, Inc. ("ISC")
 #
 # This Source Code Form is subject to the terms of the Mozilla Public
 # License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -238,7 +238,7 @@ information.
 % DHCP4_FLEX_ID flexible identifier generated for incoming packet: %1
 This debug message is printed when host reservation type is set to flexible identifier
 and the expression specified in its configuration generated (was evaluated to)
-an indetifier for incoming packet. This debug message is mainly intended as a
+an identifier for incoming packet. This debug message is mainly intended as a
 debugging assistance for flexible identifier.
 
 % DHCP4_GENERATE_FQDN %1: client did not send a FQDN or hostname; FQDN will be be generated for the client
index 8da1d683847891336a0379e2390f942e09bbbf39..20b260628d1e7c5bcb150e847229f6c27bbc65db 100644 (file)
@@ -116,9 +116,9 @@ to the end of this list.
    - name: @b id_type, type isc::dhcp::Host::IdentifierType, direction: <b>in/out</b>
    - name: @b id_value, type std::vector<uint8_t>, direction: <b>out</b>
 
- - @b Description: this callout is executed only if flexible identifers are
+ - @b Description: this callout is executed only if flexible identifiers are
    enabled, i.e. host-reservation-identifiers contain 'flex-id' value. This
-   callout enables external library to provide values for flexible identifers.
+   callout enables external library to provide values for flexible identifiers.
    To be able to use this feature, flex_id hook library is needed.
 
  - <b>Next step status</b>: If a callout installed on the "host6_identifier" hook
index 83fff820a79cdc57ba1f07fb752d4800f94df81a..a0ec8a057102ee98f619de9acff7b0b3575714f0 100644 (file)
@@ -17,7 +17,7 @@ bool evaluateBool(const Expression& expr, Pkt& pkt) {
     }
     if (values.size() != 1) {
         isc_throw(EvalBadStack, "Incorrect stack order. Expected exactly "
-                  "1 value at the end of evaluatuion, got " << values.size());
+                  "1 value at the end of evaluation, got " << values.size());
     }
     return (Token::toBool(values.top()));
 }