Add a base class for http async clients; refine examples.

This commit is contained in:
Chunting Gu
2019-02-12 17:06:26 +08:00
parent 9ecec5de0b
commit 43eaf90621
43 changed files with 803 additions and 507 deletions
+4 -1
View File
@@ -15,6 +15,7 @@ include(GNUInstallDirs)
set(HEADERS
globals.h
http_async_client_base.h
http_async_client.h
http_client_base.h
http_client.h
@@ -27,7 +28,7 @@ set(HEADERS
http_response.h
http_response_parser.h
http_server.h
logger.h
http_ssl_async_client.h
queue.h
rest_async_client.h
rest_client.h
@@ -42,6 +43,7 @@ set(HEADERS
set(SOURCES
globals.cc
http_async_client_base.cc
http_async_client.cc
http_client_base.cc
http_client.cc
@@ -54,6 +56,7 @@ set(SOURCES
http_response.cc
http_response_parser.cc
http_server.cc
http_ssl_async_client.cc
logger.cc
rest_async_client.cc
rest_client.cc