]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[5451] Fixed two doxygen warnings.
authorMarcin Siodelski <marcin@isc.org>
Thu, 18 Jan 2018 17:33:28 +0000 (18:33 +0100)
committerMarcin Siodelski <marcin@isc.org>
Thu, 18 Jan 2018 17:33:28 +0000 (18:33 +0100)
src/lib/http/client.h
src/lib/http/http_message_parser_base.h

index a25d07a5524e0857651c53932a58425d1d8d0c80..5731826ad96f69ad23060c0dfe5f7699e6915653 100644 (file)
@@ -142,6 +142,7 @@ public:
     /// @param request Pointer to the object holding a request.
     /// @param response Pointer to the object where response should be stored.
     /// @param callback Pointer to the user callback function.
+    /// @param request_timeout Timeout for the transaction in milliseconds.
     ///
     /// @throw HttpClientError If invalid arguments were provided.
     void asyncSendRequest(const Url& url,
index 78e76402133882e0993002b0fefae7f85688fdfb..7d10abc26447015db8ff3c67f16cf039ce2b82bd 100644 (file)
@@ -211,11 +211,10 @@ protected:
     /// @brief This method is called when invalid event occurred in a particular
     /// parser state.
     ///
-    /// This method simply throws @ref HttpMessageParserBaseError informing about
-    /// invalid event occurring for the particular parser state. The error
-    /// message includes the name of the handler in which the exception
-    /// has been thrown. It also includes the event which caused the
-    /// exception.
+    /// This method simply throws @ref HttpParseError informing about invalid
+    /// event occurring for the particular parser state. The error message
+    /// includes the name of the handler in which the exception has been
+    /// thrown. It also includes the event which caused the exception.
     ///
     /// @param handler_name Name of the handler in which the exception is
     /// thrown.