Changed key and value max length from 32 to 64 to accommodate for longer header lines.

Fork of HTTPClient by Donatien Garnier

Files at this revision

API Documentation at this revision

Comitter:
TimWoo
Date:
Wed Nov 19 21:03:21 2014 +0000
Parent:
19:e5a52252710f
Commit message:
changed default debug setting to 0 (off) in HTTPClient.cpp

Changed in this revision

HTTPClient.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/HTTPClient.cpp	Wed Nov 19 20:56:47 2014 +0000
+++ b/HTTPClient.cpp	Wed Nov 19 21:03:21 2014 +0000
@@ -18,7 +18,7 @@
  */
 
 //Debug is disabled by default
-#if 1
+#if 0
 //Enable debug
 #include <cstdio>
 #define DBG(x, ...) std::printf("[HTTPClient : DBG]"x"\r\n", ##__VA_ARGS__);