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.

data/HTTPFile.h

Committer:
WiredHome
Date:
2014-03-15
Revision:
23:517fec8b8b99
Child:
25:76084defa790

File content as of revision 23:517fec8b8b99:

#ifndef HTTPFILE_H
#define HTTPFILE_H
#if 0
#include <mbed.h>
#include "../IHTTPData.h"


class HTTPFile : public IHTTPDataIn {
    
    public:
        HTTPFile(char* filename);
        
        /** Closes the file, should be called once the http connection is closed.
         */
        void close();
        
    protected:     
       
        friend class HTTPClient;
    
        /** Reset stream to its beginning 
        * Called by the HTTPClient on each new request
        */
        virtual void writeReset();
        
        /** Write a piece of data transmitted by the server
        * @param buf Pointer to the buffer from which to copy the data
        * @param len Length of the buffer
        */
        virtual int write(const char* buf, size_t len);
        
        /** Set MIME type
        * @param type Internet media type from Content-Type header
        */
        virtual void setDataType(const char* type);
        
        /** Determine whether the data is chunked
        *  Recovered from Transfer-Encoding header
        */
        virtual void setIsChunked(bool chunked);
        
        /** If the data is not chunked, set its size
        * From Content-Length header
        */
        virtual void setDataLen(size_t len);
    private:
        FILE *file;
        size_t m_len;
        bool m_chunked;
};
#endif
#endif