From 11e0c73ffd23a506c68ae351641a7ca74085ca81 Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Tue, 24 Sep 2013 20:52:37 +0200 Subject: Implemented basic HTTP message header parsing. --- VC2008/MCServer.vcproj | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'VC2008/MCServer.vcproj') diff --git a/VC2008/MCServer.vcproj b/VC2008/MCServer.vcproj index c1c2593bf..7fc10fb32 100644 --- a/VC2008/MCServer.vcproj +++ b/VC2008/MCServer.vcproj @@ -900,6 +900,14 @@ RelativePath="..\source\WebAdmin.h" > + + + + -- cgit v1.2.3 From f4efcb90808603bbfce5a149f5490bd6fceb880f Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Fri, 27 Sep 2013 18:14:26 +0200 Subject: Rewritten HTTPServer to split into cHTTPConnection, cHTTPRequest and cHTTPResponse classes. --- VC2008/MCServer.vcproj | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) (limited to 'VC2008/MCServer.vcproj') diff --git a/VC2008/MCServer.vcproj b/VC2008/MCServer.vcproj index 7fc10fb32..7aba32b1d 100644 --- a/VC2008/MCServer.vcproj +++ b/VC2008/MCServer.vcproj @@ -900,14 +900,6 @@ RelativePath="..\source\WebAdmin.h" > - - - - @@ -2724,6 +2716,26 @@ > + + + + + + + + + + Date: Fri, 27 Sep 2013 19:34:46 +0200 Subject: Split cHTTPConnection implementation into a separate file. --- VC2008/MCServer.vcproj | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'VC2008/MCServer.vcproj') diff --git a/VC2008/MCServer.vcproj b/VC2008/MCServer.vcproj index 7aba32b1d..45579a8a7 100644 --- a/VC2008/MCServer.vcproj +++ b/VC2008/MCServer.vcproj @@ -2719,6 +2719,14 @@ + + + + -- cgit v1.2.3 From 8130e6dd5439e381aae18532ede48441a4b46155 Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Sat, 28 Sep 2013 19:30:25 +0200 Subject: Created basic cHTTPFormParser. It can parse forms in the application/x-www-form-urlencoded encoding, used for forms without file uploads. --- VC2008/MCServer.vcproj | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'VC2008/MCServer.vcproj') diff --git a/VC2008/MCServer.vcproj b/VC2008/MCServer.vcproj index 45579a8a7..1e17cc722 100644 --- a/VC2008/MCServer.vcproj +++ b/VC2008/MCServer.vcproj @@ -2727,6 +2727,14 @@ RelativePath="..\source\HTTPServer\HTTPConnection.h" > + + + + -- cgit v1.2.3 From 1012fd82fda9e9bc75d2308a3c68cb3b3738bf1b Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Fri, 4 Oct 2013 13:07:57 +0200 Subject: HTTP Server can now parse multipart/form-data forms; better architecture. --- VC2008/MCServer.vcproj | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'VC2008/MCServer.vcproj') diff --git a/VC2008/MCServer.vcproj b/VC2008/MCServer.vcproj index 1e17cc722..6cc83b4db 100644 --- a/VC2008/MCServer.vcproj +++ b/VC2008/MCServer.vcproj @@ -2719,6 +2719,14 @@ + + + + @@ -2751,6 +2759,22 @@ RelativePath="..\source\HTTPServer\HTTPServer.h" > + + + + + + + +