Fix doxygen variable names

Found by the Clang `-Wdocumentation` warning.
This commit is contained in:
Gregor Jasny 2021-11-15 21:57:54 +01:00
parent 1fac71ed92
commit 02a77c6193

View File

@ -72,7 +72,7 @@ class CIVETWEB_CXX_API CivetHandler
*
* @param server - the calling server
* @param conn - the connection information
* @param http - pointer to return status code
* @param status_code - pointer to return status code
* @returns true if implemented, false otherwise
*/
virtual bool handleGet(CivetServer *server,
@ -93,7 +93,7 @@ class CIVETWEB_CXX_API CivetHandler
*
* @param server - the calling server
* @param conn - the connection information
* @param http - pointer to return status code
* @param status_code - pointer to return status code
* @returns true if implemented, false otherwise
*/
virtual bool handlePost(CivetServer *server,
@ -114,7 +114,7 @@ class CIVETWEB_CXX_API CivetHandler
*
* @param server - the calling server
* @param conn - the connection information
* @param http - pointer to return status code
* @param status_code - pointer to return status code
* @returns true if implemented, false otherwise
*/
virtual bool handleHead(CivetServer *server,
@ -135,7 +135,7 @@ class CIVETWEB_CXX_API CivetHandler
*
* @param server - the calling server
* @param conn - the connection information
* @param http - pointer to return status code
* @param status_code - pointer to return status code
* @returns true if implemented, false otherwise
*/
virtual bool handlePut(CivetServer *server,
@ -156,7 +156,7 @@ class CIVETWEB_CXX_API CivetHandler
*
* @param server - the calling server
* @param conn - the connection information
* @param http - pointer to return status code
* @param status_code - pointer to return status code
* @returns true if implemented, false otherwise
*/
virtual bool handleDelete(CivetServer *server,
@ -177,7 +177,7 @@ class CIVETWEB_CXX_API CivetHandler
*
* @param server - the calling server
* @param conn - the connection information
* @param http - pointer to return status code
* @param status_code - pointer to return status code
* @returns true if implemented, false otherwise
*/
virtual bool handleOptions(CivetServer *server,
@ -198,7 +198,7 @@ class CIVETWEB_CXX_API CivetHandler
*
* @param server - the calling server
* @param conn - the connection information
* @param http - pointer to return status code
* @param status_code - pointer to return status code
* @returns true if implemented, false otherwise
*/
virtual bool handlePatch(CivetServer *server,