The original HTTPClient by donatien with 2 bugfixes

Fork of HTTPClient by Donatien Garnier

Revision:
20:d1e87804a774
Parent:
17:f924558692e3
--- a/HTTPClient.h	Wed May 07 16:48:10 2014 +0000
+++ b/HTTPClient.h	Sat Mar 07 12:20:06 2015 +0000
@@ -36,6 +36,7 @@
 ///HTTP client results
 enum HTTPResult
 {
+  HTTP_OK = 0, ///<Success
   HTTP_PROCESSING, ///<Processing
   HTTP_PARSE, ///<url Parse error
   HTTP_DNS, ///<Could not resolve name
@@ -46,7 +47,6 @@
   HTTP_TIMEOUT, ///<Connection timeout
   HTTP_CONN, ///<Connection error
   HTTP_CLOSED, ///<Connection was closed by remote host
-  HTTP_OK = 0, ///<Success
 };
 
 /**A simple HTTP Client