Skip to content

Commit 1238f44

Browse files
committed
Continued to refactor and document the HTTP client source and tests.
1 parent 6ff897f commit 1238f44

29 files changed

+57
-44
lines changed

Doxyfile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ WARN_LOGFILE =
652652

653653
INPUT = @CMAKE_CURRENT_SOURCE_DIR@/error/ \
654654
@CMAKE_CURRENT_SOURCE_DIR@/uri/src/network/ \
655-
@CMAKE_CURRENT_SOURCE_DIR@/http/src/network/http/v2/
655+
@CMAKE_CURRENT_SOURCE_DIR@/http/src/network/http/
656656

657657
# This tag can be used to specify the character encoding of the source files
658658
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is

http/src/network/http/errors.hpp

Lines changed: 0 additions & 11 deletions
This file was deleted.

http/src/network/http/request.hpp

Lines changed: 0 additions & 11 deletions
This file was deleted.

http/src/network/http/response.hpp

Lines changed: 0 additions & 11 deletions
This file was deleted.

http/src/network/http/v2/client/connection/async_connection.hpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
#ifndef NETWORK_HTTP_V2_CLIENT_CONNECTION_ASYNC_CONNECTION_INC
77
#define NETWORK_HTTP_V2_CLIENT_CONNECTION_ASYNC_CONNECTION_INC
88

9+
/**
10+
* \file
11+
* \brief
12+
*/
13+
914
#include <functional>
1015
#include <string>
1116
#include <boost/asio/ip/tcp.hpp>

http/src/network/http/v2/client/connection/async_resolver.hpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@
88
#ifndef NETWORK_HTTP_V2_CLIENT_CONNECTION_ASYNC_RESOLVER_INC
99
#define NETWORK_HTTP_V2_CLIENT_CONNECTION_ASYNC_RESOLVER_INC
1010

11+
/**
12+
* \file
13+
* \brief
14+
*/
15+
1116
#include <functional>
1217
#include <boost/asio/ip/tcp.hpp>
1318

http/src/network/http/v2/client/connection/endpoint_cache.hpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
#ifndef NETWORK_HTTP_V2_CLIENT_CONNECTION_ENDPOINT_CACHE_INC
77
#define NETWORK_HTTP_V2_CLIENT_CONNECTION_ENDPOINT_CACHE_INC
88

9+
/**
10+
* \file
11+
* \brief
12+
*/
13+
914
#include <string>
1015
#include <unordered_map>
1116
#include <boost/asio/ip/tcp.hpp>

http/src/network/http/v2/client/connection/normal_connection.hpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
#ifndef NETWORK_HTTP_V2_CLIENT_CONNECTION_NORMAL_CONNECTION_INC
77
#define NETWORK_HTTP_V2_CLIENT_CONNECTION_NORMAL_CONNECTION_INC
88

9+
/**
10+
* \file
11+
* \brief
12+
*/
13+
914
#include <boost/asio/write.hpp>
1015
#include <boost/asio/read.hpp>
1116
#include <boost/asio/read_until.hpp>

http/src/network/http/v2/client/connection/ssl_connection.hpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
#ifndef NETWORK_HTTP_V2_CLIENT_CONNECTION_SSL_CONNECTION_INC
77
#define NETWORK_HTTP_V2_CLIENT_CONNECTION_SSL_CONNECTION_INC
88

9+
/**
10+
* \file
11+
* \brief
12+
*/
13+
914
#include <memory>
1015
#include <vector>
1116
#include <boost/asio/ip/tcp.hpp>

http/src/network/http/v2/client/connection/tcp_resolver.hpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@
88
#ifndef NETWORK_HTTP_V2_CLIENT_CONNECTION_TCP_RESOLVER_INC
99
#define NETWORK_HTTP_V2_CLIENT_CONNECTION_TCP_RESOLVER_INC
1010

11+
/**
12+
* \file
13+
* \brief
14+
*/
15+
1116
#include <stdexcept>
1217
#include <cstdint>
1318
#include <string>

0 commit comments

Comments
 (0)