Fixed custom headers and Basic authorization, added support for redirection, functional file download interface can be used for SW updates and more.

Dependents:   Sample_HTTPClient Sample_HTTPClient LWM2M_NanoService_Ethernet LWM2M_NanoService_Ethernet ... more

Fork of HTTPClient by Vincent Wochnik

More recent changes - added iCal processing.

Derivative of a derivative, however this one works when it comes to supplying Basic authorization to access a protected resource. Some additional changes to the debug interface to clean it up for consistency with many other components I have.

Files at this revision

API Documentation at this revision

Comitter:
WiredHome
Date:
Sun Oct 01 18:07:05 2017 +0000
Parent:
44:0e3b0849b2c7
Child:
46:ac12edc84261
Child:
47:677677ac6443
Commit message:
Make a private data structure static to avoid a name class

Changed in this revision

data/HTTPiCal.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/data/HTTPiCal.cpp	Sat Jul 29 14:05:52 2017 +0000
+++ b/data/HTTPiCal.cpp	Sun Oct 01 18:07:05 2017 +0000
@@ -113,7 +113,7 @@
 }
 
 
-const char * RPT_DAYS[] = { "SU", "MO", "TU", "WE", "TH", "FR", "SA", "" };
+static const char * RPT_DAYS[] = { "SU", "MO", "TU", "WE", "TH", "FR", "SA", "" };
 
 
 const char * HTTPiCal::RepeatDayAbbrev(int i)