diff options
author | Tomek Mrugalski <tomasz@isc.org> | 2018-01-27 00:09:33 +0100 |
---|---|---|
committer | Tomek Mrugalski <tomasz@isc.org> | 2018-01-27 00:09:33 +0100 |
commit | 7edd611cb0aefa98f4cc17135899b4bc8472c1dc (patch) | |
tree | 8cb66fa228c9e557443b259b406912ddf35e7260 /src/lib/dhcpsrv/pool.h | |
parent | [5425a] Ported last changes and fixes (diff) | |
download | kea-7edd611cb0aefa98f4cc17135899b4bc8472c1dc.tar.xz kea-7edd611cb0aefa98f4cc17135899b4bc8472c1dc.zip |
[5425a] Changes after review:
- it is now possible to define multiple classes for a pool
- small doc corrections
Diffstat (limited to 'src/lib/dhcpsrv/pool.h')
-rw-r--r-- | src/lib/dhcpsrv/pool.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/dhcpsrv/pool.h b/src/lib/dhcpsrv/pool.h index 46423f6fa8..bba123cfcf 100644 --- a/src/lib/dhcpsrv/pool.h +++ b/src/lib/dhcpsrv/pool.h @@ -100,8 +100,7 @@ public: /// @brief Checks whether this pool supports client that belongs to /// specified classes. /// - /// @todo: currently doing the same than network which - /// is known to be improved. + /// @todo: currently doing the same as network which needs improving. /// /// @param client_classes list of all classes the client belongs to /// @return true if client can be supported, false otherwise @@ -204,6 +203,9 @@ protected: /// @brief Optional definition of a client class /// + /// If empty, all classes are allowed. If non-empty, only those listed + /// here are allowed. + /// /// @ref Network::white_list_ ClientClasses white_list_; |