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.

Revision:
18:cf5d7427a9ec
Parent:
17:8299c6440e37
Child:
19:bcbf0af9fac3
--- a/HTTPClient.h	Fri Jan 18 17:15:39 2013 +0000
+++ b/HTTPClient.h	Sun Apr 28 10:04:51 2013 +0000
@@ -140,6 +140,8 @@
   HTTPResult recv(char* buf, size_t minLen, size_t maxLen, size_t* pReadLen); //0 on success, err code on failure
   HTTPResult send(char* buf, size_t len = 0); //0 on success, err code on failure
   HTTPResult parseURL(const char* url, char* scheme, size_t maxSchemeLen, char* host, size_t maxHostLen, uint16_t* port, char* path, size_t maxPathLen); //Parse URL
+  void createauth (const char *user, const char *pwd, char *buf, int len);
+  int base64enc(const char *input, unsigned int length, char *output, int len);
 
   //Parameters
   TCPSocketConnection m_sock;