From 71aaceca0947d1c4f0e42a7ddf9f3f41e1148543 Mon Sep 17 00:00:00 2001 From: Karel Jakubec Date: Mon, 6 Apr 2015 21:51:56 +0200 Subject: [PATCH] Add missing comments, fix typo --- src/httpserver/http_request.hpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/httpserver/http_request.hpp b/src/httpserver/http_request.hpp index 1a03978c..386dab8e 100644 --- a/src/httpserver/http_request.hpp +++ b/src/httpserver/http_request.hpp @@ -406,12 +406,16 @@ class http_request short requestor_port; struct MHD_Connection* underlying_connection; + /** + * Method used to set a connection + * @param conn The name identifying the header + **/ void set_underlying_connection(struct MHD_Connection* conn) { this->underlying_connection = conn; } /** - * Method used to set an header value by key. + * Method used to set a header value by key. * @param key The name identifying the header * @param value The value assumed by the header **/