]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#3207] Add some comments
authorSlawek Figiel <slawek@isc.org>
Tue, 20 Feb 2024 07:59:48 +0000 (08:59 +0100)
committerSlawek Figiel <slawek@isc.org>
Tue, 20 Feb 2024 08:34:22 +0000 (09:34 +0100)
src/bin/perfdhcp/test_control.h

index b72ac0b5336cb17c052e4a92b08e6b48e117c8bd..891e3a7f359fbb024c551612e07c773add9aef9f 100644 (file)
@@ -206,7 +206,13 @@ public:
         }
 
     private:
+        /// \brief The random values will be uniformly distributed in
+        /// the range provided in the constructor.
         std::uniform_int_distribution<> distribution;
+
+        /// \brief It is a high quality general-purpose random
+        /// generator. It isn't suitable for cryptographic use but is
+        /// good enough for testing.
         std::mt19937 randomness_generator;
     };