summaryrefslogtreecommitdiffhomepage
path: root/NetEx
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-03-29 23:17:42 +0200
committerAki <please@ignore.pl>2022-03-29 23:17:42 +0200
commit20eb9409e1d4d5d26222e62df4a81b0be9cae6f2 (patch)
tree9952cab72e8bdc9c7e8b8f9f9ffaa55c2fe0a180 /NetEx
parent648ced3e6b86597c2c1e52a7705ff3723c933d0e (diff)
downloadstarshatter-20eb9409e1d4d5d26222e62df4a81b0be9cae6f2.zip
starshatter-20eb9409e1d4d5d26222e62df4a81b0be9cae6f2.tar.gz
starshatter-20eb9409e1d4d5d26222e62df4a81b0be9cae6f2.tar.bz2
Fixed includes in HttpClient
Diffstat (limited to 'NetEx')
-rw-r--r--NetEx/HttpClient.cpp18
-rw-r--r--NetEx/HttpClient.h15
2 files changed, 20 insertions, 13 deletions
diff --git a/NetEx/HttpClient.cpp b/NetEx/HttpClient.cpp
index 5b62a51..642ebe3 100644
--- a/NetEx/HttpClient.cpp
+++ b/NetEx/HttpClient.cpp
@@ -3,18 +3,22 @@
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
- AUTHOR: John DiCamillo
+ AUTHOR: John DiCamillo
- OVERVIEW
- ========
- Network Server Pump for HTTP Server
+ OVERVIEW
+ ========
+ Network Server Pump for HTTP Server
*/
#include "HttpClient.h"
-#include "NetHost.h"
-#include "NetLayer.h"
-#include <mmsystem.h>
+
+#include "HttpParam.h"
+#include "HttpRequest.h"
+#include "HttpResponse.h"
+#include "List.h"
+#include "NetAddr.h"
+#include "NetClient.h"
// +-------------------------------------------------------------------+
diff --git a/NetEx/HttpClient.h b/NetEx/HttpClient.h
index 02bf923..cded234 100644
--- a/NetEx/HttpClient.h
+++ b/NetEx/HttpClient.h
@@ -3,20 +3,23 @@
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
- AUTHOR: John DiCamillo
+ AUTHOR: John DiCamillo
- OVERVIEW
- ========
- HTTP/1.1 client class
+ OVERVIEW
+ ========
+ HTTP/1.1 client class
*/
-
#ifndef HttpClient_h
#define HttpClient_h
+#include "HttpParam.h"
+#include "HttpRequest.h"
+#include "HttpResponse.h"
+#include "List.h"
+#include "NetAddr.h"
#include "NetClient.h"
-#include "HttpServer.h"
// +-------------------------------------------------------------------+