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
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.
Diff: data/HTTPFile.cpp
- Revision:
- 29:9ee96efc1c20
- Parent:
- 27:32a53068ce03
- Child:
- 33:d4d1475bafc0
--- a/data/HTTPFile.cpp Sat May 17 19:54:21 2014 +0000 +++ b/data/HTTPFile.cpp Sat Jun 14 14:43:09 2014 +0000 @@ -1,6 +1,6 @@ #include "HTTPFile.h" -#define DEBUG "HTfi" +//#define DEBUG "HTfi" #include <cstdio> #if (defined(DEBUG) && !defined(TARGET_LPC11U24)) #define DBG(x, ...) std::printf("[DBG %s %3d] "x"\r\n", DEBUG, __LINE__, ##__VA_ARGS__); @@ -39,7 +39,7 @@ size_t written; INFO("write(%d,%s) m_len(%d), chunk %d", len, buf, m_len, m_chunked); if (file) { - written = fwrite(&buf, 1, len, file); + written = fwrite(buf, 1, len, file); INFO(" writ:%d, ftell: %d", written, ftell(file)); if ((!m_chunked && (ftell(file) >= m_len)) || (m_chunked && !written)) { INFO("closing");