Change buffer sizes to support GR-PEACH

Dependencies:   CyaSSL

Dependents:   GR-PEACH_Azure_Speech

Fork of HTTPClient-SSL by MultiTech

Revision:
50:7fbf8ef951f2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/data/HTTPFile.h	Sat Nov 07 12:20:31 2015 +0000
@@ -0,0 +1,50 @@
+#ifndef HTTPFILE_H
+#define HTTPFILE_H
+
+#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
\ No newline at end of file