Add default values to answer_type and update documentation.

This commit is contained in:
tastytea 2020-01-05 12:21:15 +01:00
parent 4016260954
commit 07d16594c9
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 4 additions and 3 deletions

View File

@ -47,7 +47,7 @@ struct answer_type
* *
* @since 0.1.0 * @since 0.1.0
*/ */
uint8_t curl_error_code; uint8_t curl_error_code{0};
/*! /*!
* @brief The error message. * @brief The error message.
@ -61,7 +61,7 @@ struct answer_type
* *
* @since 0.1.0 * @since 0.1.0
*/ */
uint16_t http_status; uint16_t http_status{0};
/*! /*!
* @brief The headers of the response from the server. * @brief The headers of the response from the server.
@ -78,7 +78,8 @@ struct answer_type
string body; string body;
/*! /*!
* @brief Returns true if #error_code is 0, false otherwise. * @brief Returns true if #curl_error_code is 0 and #http_status is 200,
* false otherwise.
* *
* @since 0.1.0 * @since 0.1.0
*/ */