summaryrefslogtreecommitdiff
path: root/include/tgbot/net/HttpServer.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/tgbot/net/HttpServer.h')
-rw-r--r--include/tgbot/net/HttpServer.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/tgbot/net/HttpServer.h b/include/tgbot/net/HttpServer.h
index d68599f..e760e29 100644
--- a/include/tgbot/net/HttpServer.h
+++ b/include/tgbot/net/HttpServer.h
@@ -32,7 +32,8 @@
namespace TgBot {
/**
- * This class handles HTTP requests from the Internet.
+ * @brief This class handles HTTP requests from the Internet.
+ *
* @ingroup net
*/
template<typename Protocol>
@@ -48,7 +49,7 @@ public:
}
/**
- * Starts receiving new connections.
+ * @brief Starts receiving new connections.
*/
void start() {
auto socket(std::make_shared<boost::asio::basic_stream_socket<Protocol>>(_acceptor->get_io_service()));
@@ -61,7 +62,7 @@ public:
}
/**
- * Stops receiving new connections.
+ * @brief Stops receiving new connections.
*/
void stop() {
_ioService.stop();