Hi. This is the feed program for Cosm. (The previous name of the services is Pachube.)

Dependencies:   mbed ThermistorPack Pachube ConfigFile EthernetNetIf TextLCD HTTPClient_ToBeRemoved FatFileSystem SDFileSystem

Committer:
shintamainjp
Date:
Mon Aug 06 12:37:59 2012 +0000
Revision:
0:521ba375aa0f
Pachube renamed to Cosm.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
shintamainjp 0:521ba375aa0f 1
shintamainjp 0:521ba375aa0f 2 /*
shintamainjp 0:521ba375aa0f 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
shintamainjp 0:521ba375aa0f 4
shintamainjp 0:521ba375aa0f 5 Permission is hereby granted, free of charge, to any person obtaining a copy
shintamainjp 0:521ba375aa0f 6 of this software and associated documentation files (the "Software"), to deal
shintamainjp 0:521ba375aa0f 7 in the Software without restriction, including without limitation the rights
shintamainjp 0:521ba375aa0f 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
shintamainjp 0:521ba375aa0f 9 copies of the Software, and to permit persons to whom the Software is
shintamainjp 0:521ba375aa0f 10 furnished to do so, subject to the following conditions:
shintamainjp 0:521ba375aa0f 11
shintamainjp 0:521ba375aa0f 12 The above copyright notice and this permission notice shall be included in
shintamainjp 0:521ba375aa0f 13 all copies or substantial portions of the Software.
shintamainjp 0:521ba375aa0f 14
shintamainjp 0:521ba375aa0f 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
shintamainjp 0:521ba375aa0f 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
shintamainjp 0:521ba375aa0f 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
shintamainjp 0:521ba375aa0f 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
shintamainjp 0:521ba375aa0f 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
shintamainjp 0:521ba375aa0f 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
shintamainjp 0:521ba375aa0f 21 THE SOFTWARE.
shintamainjp 0:521ba375aa0f 22 */
shintamainjp 0:521ba375aa0f 23
shintamainjp 0:521ba375aa0f 24 /** \file
shintamainjp 0:521ba375aa0f 25 HTTP Client header file
shintamainjp 0:521ba375aa0f 26 */
shintamainjp 0:521ba375aa0f 27
shintamainjp 0:521ba375aa0f 28 #ifndef HTTP_CLIENT_H
shintamainjp 0:521ba375aa0f 29 #define HTTP_CLIENT_H
shintamainjp 0:521ba375aa0f 30
shintamainjp 0:521ba375aa0f 31 class HTTPData;
shintamainjp 0:521ba375aa0f 32
shintamainjp 0:521ba375aa0f 33 #include "core/net.h"
shintamainjp 0:521ba375aa0f 34 #include "api/TCPSocket.h"
shintamainjp 0:521ba375aa0f 35 #include "api/DNSRequest.h"
shintamainjp 0:521ba375aa0f 36 #include "HTTPData.h"
shintamainjp 0:521ba375aa0f 37 #include "mbed.h"
shintamainjp 0:521ba375aa0f 38
shintamainjp 0:521ba375aa0f 39 #include <string>
shintamainjp 0:521ba375aa0f 40 using std::string;
shintamainjp 0:521ba375aa0f 41
shintamainjp 0:521ba375aa0f 42 #include <map>
shintamainjp 0:521ba375aa0f 43 using std::map;
shintamainjp 0:521ba375aa0f 44
shintamainjp 0:521ba375aa0f 45 ///HTTP client results
shintamainjp 0:521ba375aa0f 46 enum HTTPResult
shintamainjp 0:521ba375aa0f 47 {
shintamainjp 0:521ba375aa0f 48 HTTP_OK, ///<Success
shintamainjp 0:521ba375aa0f 49 HTTP_PROCESSING, ///<Processing
shintamainjp 0:521ba375aa0f 50 HTTP_PARSE, ///<URI Parse error
shintamainjp 0:521ba375aa0f 51 HTTP_DNS, ///<Could not resolve name
shintamainjp 0:521ba375aa0f 52 HTTP_PRTCL, ///<Protocol error
shintamainjp 0:521ba375aa0f 53 HTTP_NOTFOUND, ///<HTTP 404 Error
shintamainjp 0:521ba375aa0f 54 HTTP_REFUSED, ///<HTTP 403 Error
shintamainjp 0:521ba375aa0f 55 HTTP_ERROR, ///<HTTP xxx error
shintamainjp 0:521ba375aa0f 56 HTTP_TIMEOUT, ///<Connection timeout
shintamainjp 0:521ba375aa0f 57 HTTP_CONN ///<Connection error
shintamainjp 0:521ba375aa0f 58 };
shintamainjp 0:521ba375aa0f 59
shintamainjp 0:521ba375aa0f 60 #include "core/netservice.h"
shintamainjp 0:521ba375aa0f 61
shintamainjp 0:521ba375aa0f 62 ///A simple HTTP Client
shintamainjp 0:521ba375aa0f 63 /**
shintamainjp 0:521ba375aa0f 64 The HTTPClient is composed of:
shintamainjp 0:521ba375aa0f 65 - The actual client (HTTPClient)
shintamainjp 0:521ba375aa0f 66 - Classes that act as a data repository, each of which deriving from the HTTPData class (HTTPText for short text content, HTTPFile for file I/O, HTTPMap for key/value pairs, and HTTPStream for streaming purposes)
shintamainjp 0:521ba375aa0f 67 */
shintamainjp 0:521ba375aa0f 68 class HTTPClient : protected NetService
shintamainjp 0:521ba375aa0f 69 {
shintamainjp 0:521ba375aa0f 70 public:
shintamainjp 0:521ba375aa0f 71 ///Instantiates the HTTP client
shintamainjp 0:521ba375aa0f 72 HTTPClient();
shintamainjp 0:521ba375aa0f 73 virtual ~HTTPClient();
shintamainjp 0:521ba375aa0f 74
shintamainjp 0:521ba375aa0f 75 ///Provides a basic authentification feature (Base64 encoded username and password)
shintamainjp 0:521ba375aa0f 76 void basicAuth(const char* user, const char* password); //Basic Authentification
shintamainjp 0:521ba375aa0f 77
shintamainjp 0:521ba375aa0f 78 //High Level setup functions
shintamainjp 0:521ba375aa0f 79 ///Executes a GET Request (blocking)
shintamainjp 0:521ba375aa0f 80 /**
shintamainjp 0:521ba375aa0f 81 Executes a GET request on the URI uri
shintamainjp 0:521ba375aa0f 82 @param uri : URI on which to execute the request
shintamainjp 0:521ba375aa0f 83 @param pDataIn : pointer to an HTTPData instance that will collect the data returned by the request, can be NULL
shintamainjp 0:521ba375aa0f 84 Blocks until completion
shintamainjp 0:521ba375aa0f 85 */
shintamainjp 0:521ba375aa0f 86 HTTPResult get(const char* uri, HTTPData* pDataIn); //Blocking
shintamainjp 0:521ba375aa0f 87
shintamainjp 0:521ba375aa0f 88 ///Executes a GET Request (non blocking)
shintamainjp 0:521ba375aa0f 89 /**
shintamainjp 0:521ba375aa0f 90 Executes a GET request on the URI uri
shintamainjp 0:521ba375aa0f 91 @param uri : URI on which to execute the request
shintamainjp 0:521ba375aa0f 92 @param pDataIn : pointer to an HTTPData instance that will collect the data returned by the request, can be NULL
shintamainjp 0:521ba375aa0f 93 @param pMethod : callback function
shintamainjp 0:521ba375aa0f 94 The function returns immediately and calls the callback on completion or error
shintamainjp 0:521ba375aa0f 95 */
shintamainjp 0:521ba375aa0f 96 HTTPResult get(const char* uri, HTTPData* pDataIn, void (*pMethod)(HTTPResult)); //Non blocking
shintamainjp 0:521ba375aa0f 97
shintamainjp 0:521ba375aa0f 98 ///Executes a GET Request (non blocking)
shintamainjp 0:521ba375aa0f 99 /**
shintamainjp 0:521ba375aa0f 100 Executes a GET request on the URI uri
shintamainjp 0:521ba375aa0f 101 @param uri : URI on which to execute the request
shintamainjp 0:521ba375aa0f 102 @param pDataIn : pointer to an HTTPData instance that will collect the data returned by the request, can be NULL
shintamainjp 0:521ba375aa0f 103 @param pItem : instance of class on which to execute the callback method
shintamainjp 0:521ba375aa0f 104 @param pMethod : callback method
shintamainjp 0:521ba375aa0f 105 The function returns immediately and calls the callback on completion or error
shintamainjp 0:521ba375aa0f 106 */
shintamainjp 0:521ba375aa0f 107 template<class T>
shintamainjp 0:521ba375aa0f 108 HTTPResult get(const char* uri, HTTPData* pDataIn, T* pItem, void (T::*pMethod)(HTTPResult)) //Non blocking
shintamainjp 0:521ba375aa0f 109 {
shintamainjp 0:521ba375aa0f 110 setOnResult(pItem, pMethod);
shintamainjp 0:521ba375aa0f 111 doGet(uri, pDataIn);
shintamainjp 0:521ba375aa0f 112 return HTTP_PROCESSING;
shintamainjp 0:521ba375aa0f 113 }
shintamainjp 0:521ba375aa0f 114
shintamainjp 0:521ba375aa0f 115 ///Executes a POST Request (blocking)
shintamainjp 0:521ba375aa0f 116 /**
shintamainjp 0:521ba375aa0f 117 Executes a POST request on the URI uri
shintamainjp 0:521ba375aa0f 118 @param uri : URI on which to execute the request
shintamainjp 0:521ba375aa0f 119 @param dataOut : a HTTPData instance that contains the data that will be posted
shintamainjp 0:521ba375aa0f 120 @param pDataIn : pointer to an HTTPData instance that will collect the data returned by the request, can be NULL
shintamainjp 0:521ba375aa0f 121 Blocks until completion
shintamainjp 0:521ba375aa0f 122 */
shintamainjp 0:521ba375aa0f 123 HTTPResult post(const char* uri, const HTTPData& dataOut, HTTPData* pDataIn); //Blocking
shintamainjp 0:521ba375aa0f 124
shintamainjp 0:521ba375aa0f 125 ///Executes a POST Request (non blocking)
shintamainjp 0:521ba375aa0f 126 /**
shintamainjp 0:521ba375aa0f 127 Executes a POST request on the URI uri
shintamainjp 0:521ba375aa0f 128 @param uri : URI on which to execute the request
shintamainjp 0:521ba375aa0f 129 @param dataOut : a HTTPData instance that contains the data that will be posted
shintamainjp 0:521ba375aa0f 130 @param pDataIn : pointer to an HTTPData instance that will collect the data returned by the request, can be NULL
shintamainjp 0:521ba375aa0f 131 @param pMethod : callback function
shintamainjp 0:521ba375aa0f 132 The function returns immediately and calls the callback on completion or error
shintamainjp 0:521ba375aa0f 133 */
shintamainjp 0:521ba375aa0f 134 HTTPResult post(const char* uri, const HTTPData& dataOut, HTTPData* pDataIn, void (*pMethod)(HTTPResult)); //Non blocking
shintamainjp 0:521ba375aa0f 135
shintamainjp 0:521ba375aa0f 136 ///Executes a POST Request (non blocking)
shintamainjp 0:521ba375aa0f 137 /**
shintamainjp 0:521ba375aa0f 138 Executes a POST request on the URI uri
shintamainjp 0:521ba375aa0f 139 @param uri : URI on which to execute the request
shintamainjp 0:521ba375aa0f 140 @param dataOut : a HTTPData instance that contains the data that will be posted
shintamainjp 0:521ba375aa0f 141 @param pDataIn : pointer to an HTTPData instance that will collect the data returned by the request, can be NULL
shintamainjp 0:521ba375aa0f 142 @param pItem : instance of class on which to execute the callback method
shintamainjp 0:521ba375aa0f 143 @param pMethod : callback method
shintamainjp 0:521ba375aa0f 144 The function returns immediately and calls the callback on completion or error
shintamainjp 0:521ba375aa0f 145 */
shintamainjp 0:521ba375aa0f 146 template<class T>
shintamainjp 0:521ba375aa0f 147 HTTPResult post(const char* uri, const HTTPData& dataOut, HTTPData* pDataIn, T* pItem, void (T::*pMethod)(HTTPResult)) //Non blocking
shintamainjp 0:521ba375aa0f 148 {
shintamainjp 0:521ba375aa0f 149 setOnResult(pItem, pMethod);
shintamainjp 0:521ba375aa0f 150 doPost(uri, dataOut, pDataIn);
shintamainjp 0:521ba375aa0f 151 return HTTP_PROCESSING;
shintamainjp 0:521ba375aa0f 152 }
shintamainjp 0:521ba375aa0f 153
shintamainjp 0:521ba375aa0f 154 ///Executes a GET Request (non blocking)
shintamainjp 0:521ba375aa0f 155 /**
shintamainjp 0:521ba375aa0f 156 Executes a GET request on the URI uri
shintamainjp 0:521ba375aa0f 157 @param uri : URI on which to execute the request
shintamainjp 0:521ba375aa0f 158 @param pDataIn : pointer to an HTTPData instance that will collect the data returned by the request, can be NULL
shintamainjp 0:521ba375aa0f 159 The function returns immediately and calls the previously set callback on completion or error
shintamainjp 0:521ba375aa0f 160 */
shintamainjp 0:521ba375aa0f 161 void doGet(const char* uri, HTTPData* pDataIn);
shintamainjp 0:521ba375aa0f 162
shintamainjp 0:521ba375aa0f 163 ///Executes a POST Request (non blocking)
shintamainjp 0:521ba375aa0f 164 /**
shintamainjp 0:521ba375aa0f 165 Executes a POST request on the URI uri
shintamainjp 0:521ba375aa0f 166 @param uri : URI on which to execute the request
shintamainjp 0:521ba375aa0f 167 @param dataOut : a HTTPData instance that contains the data that will be posted
shintamainjp 0:521ba375aa0f 168 @param pDataIn : pointer to an HTTPData instance that will collect the data returned by the request, can be NULL
shintamainjp 0:521ba375aa0f 169 @param pMethod : callback function
shintamainjp 0:521ba375aa0f 170 The function returns immediately and calls the previously set callback on completion or error
shintamainjp 0:521ba375aa0f 171 */
shintamainjp 0:521ba375aa0f 172 void doPost(const char* uri, const HTTPData& dataOut, HTTPData* pDataIn);
shintamainjp 0:521ba375aa0f 173
shintamainjp 0:521ba375aa0f 174 ///Setups the result callback
shintamainjp 0:521ba375aa0f 175 /**
shintamainjp 0:521ba375aa0f 176 @param pMethod : callback function
shintamainjp 0:521ba375aa0f 177 */
shintamainjp 0:521ba375aa0f 178 void setOnResult( void (*pMethod)(HTTPResult) );
shintamainjp 0:521ba375aa0f 179
shintamainjp 0:521ba375aa0f 180 ///Setups the result callback
shintamainjp 0:521ba375aa0f 181 /**
shintamainjp 0:521ba375aa0f 182 @param pItem : instance of class on which to execute the callback method
shintamainjp 0:521ba375aa0f 183 @param pMethod : callback method
shintamainjp 0:521ba375aa0f 184 */
shintamainjp 0:521ba375aa0f 185 class CDummy;
shintamainjp 0:521ba375aa0f 186 template<class T>
shintamainjp 0:521ba375aa0f 187 void setOnResult( T* pItem, void (T::*pMethod)(HTTPResult) )
shintamainjp 0:521ba375aa0f 188 {
shintamainjp 0:521ba375aa0f 189 m_pCb = NULL;
shintamainjp 0:521ba375aa0f 190 m_pCbItem = (CDummy*) pItem;
shintamainjp 0:521ba375aa0f 191 m_pCbMeth = (void (CDummy::*)(HTTPResult)) pMethod;
shintamainjp 0:521ba375aa0f 192 }
shintamainjp 0:521ba375aa0f 193
shintamainjp 0:521ba375aa0f 194 ///Setups timeout
shintamainjp 0:521ba375aa0f 195 /**
shintamainjp 0:521ba375aa0f 196 @param ms : time of connection inactivity in ms after which the request should timeout
shintamainjp 0:521ba375aa0f 197 */
shintamainjp 0:521ba375aa0f 198 void setTimeout(int ms);
shintamainjp 0:521ba375aa0f 199
shintamainjp 0:521ba375aa0f 200 virtual void poll(); //Called by NetServices
shintamainjp 0:521ba375aa0f 201
shintamainjp 0:521ba375aa0f 202 ///Gets last request's HTTP response code
shintamainjp 0:521ba375aa0f 203 /**
shintamainjp 0:521ba375aa0f 204 @return The HTTP response code of the last request
shintamainjp 0:521ba375aa0f 205 */
shintamainjp 0:521ba375aa0f 206 int getHTTPResponseCode();
shintamainjp 0:521ba375aa0f 207
shintamainjp 0:521ba375aa0f 208 ///Sets a specific request header
shintamainjp 0:521ba375aa0f 209 void setRequestHeader(const string& header, const string& value);
shintamainjp 0:521ba375aa0f 210
shintamainjp 0:521ba375aa0f 211 ///Gets a response header
shintamainjp 0:521ba375aa0f 212 string& getResponseHeader(const string& header);
shintamainjp 0:521ba375aa0f 213
shintamainjp 0:521ba375aa0f 214 ///Clears request headers
shintamainjp 0:521ba375aa0f 215 void resetRequestHeaders();
shintamainjp 0:521ba375aa0f 216
shintamainjp 0:521ba375aa0f 217 protected:
shintamainjp 0:521ba375aa0f 218 void resetTimeout();
shintamainjp 0:521ba375aa0f 219
shintamainjp 0:521ba375aa0f 220 void init();
shintamainjp 0:521ba375aa0f 221 void close();
shintamainjp 0:521ba375aa0f 222
shintamainjp 0:521ba375aa0f 223 void setup(const char* uri, HTTPData* pDataOut, HTTPData* pDataIn); //Setup request, make DNS Req if necessary
shintamainjp 0:521ba375aa0f 224 void connect(); //Start Connection
shintamainjp 0:521ba375aa0f 225
shintamainjp 0:521ba375aa0f 226 int tryRead(); //Read data and try to feed output
shintamainjp 0:521ba375aa0f 227 void readData(); //Data has been read
shintamainjp 0:521ba375aa0f 228 void writeData(); //Data has been written & buf is free
shintamainjp 0:521ba375aa0f 229
shintamainjp 0:521ba375aa0f 230 void onTCPSocketEvent(TCPSocketEvent e);
shintamainjp 0:521ba375aa0f 231 void onDNSReply(DNSReply r);
shintamainjp 0:521ba375aa0f 232 void onResult(HTTPResult r); //Called when exchange completed or on failure
shintamainjp 0:521ba375aa0f 233 void onTimeout(); //Connection has timed out
shintamainjp 0:521ba375aa0f 234
shintamainjp 0:521ba375aa0f 235 private:
shintamainjp 0:521ba375aa0f 236 HTTPResult blockingProcess(); //Called in blocking mode, calls Net::poll() until return code is available
shintamainjp 0:521ba375aa0f 237
shintamainjp 0:521ba375aa0f 238 bool readHeaders(); //Called first when receiving data
shintamainjp 0:521ba375aa0f 239 bool writeHeaders(); //Called to create req
shintamainjp 0:521ba375aa0f 240 int readLine(char* str, int maxLen, bool* pIncomplete = NULL);
shintamainjp 0:521ba375aa0f 241
shintamainjp 0:521ba375aa0f 242 enum HTTP_METH
shintamainjp 0:521ba375aa0f 243 {
shintamainjp 0:521ba375aa0f 244 HTTP_GET,
shintamainjp 0:521ba375aa0f 245 HTTP_POST,
shintamainjp 0:521ba375aa0f 246 HTTP_HEAD
shintamainjp 0:521ba375aa0f 247 };
shintamainjp 0:521ba375aa0f 248
shintamainjp 0:521ba375aa0f 249 HTTP_METH m_meth;
shintamainjp 0:521ba375aa0f 250
shintamainjp 0:521ba375aa0f 251 CDummy* m_pCbItem;
shintamainjp 0:521ba375aa0f 252 void (CDummy::*m_pCbMeth)(HTTPResult);
shintamainjp 0:521ba375aa0f 253
shintamainjp 0:521ba375aa0f 254 void (*m_pCb)(HTTPResult);
shintamainjp 0:521ba375aa0f 255
shintamainjp 0:521ba375aa0f 256 TCPSocket* m_pTCPSocket;
shintamainjp 0:521ba375aa0f 257 map<string, string> m_reqHeaders;
shintamainjp 0:521ba375aa0f 258 map<string, string> m_respHeaders;
shintamainjp 0:521ba375aa0f 259
shintamainjp 0:521ba375aa0f 260 Timer m_watchdog;
shintamainjp 0:521ba375aa0f 261 int m_timeout;
shintamainjp 0:521ba375aa0f 262
shintamainjp 0:521ba375aa0f 263 DNSRequest* m_pDnsReq;
shintamainjp 0:521ba375aa0f 264
shintamainjp 0:521ba375aa0f 265 Host m_server;
shintamainjp 0:521ba375aa0f 266 string m_path;
shintamainjp 0:521ba375aa0f 267
shintamainjp 0:521ba375aa0f 268 bool m_closed;
shintamainjp 0:521ba375aa0f 269
shintamainjp 0:521ba375aa0f 270 enum HTTPStep
shintamainjp 0:521ba375aa0f 271 {
shintamainjp 0:521ba375aa0f 272 // HTTP_INIT,
shintamainjp 0:521ba375aa0f 273 HTTP_WRITE_HEADERS,
shintamainjp 0:521ba375aa0f 274 HTTP_WRITE_DATA,
shintamainjp 0:521ba375aa0f 275 HTTP_READ_HEADERS,
shintamainjp 0:521ba375aa0f 276 HTTP_READ_DATA,
shintamainjp 0:521ba375aa0f 277 HTTP_READ_DATA_INCOMPLETE,
shintamainjp 0:521ba375aa0f 278 HTTP_DONE,
shintamainjp 0:521ba375aa0f 279 HTTP_CLOSED
shintamainjp 0:521ba375aa0f 280 };
shintamainjp 0:521ba375aa0f 281
shintamainjp 0:521ba375aa0f 282 HTTPStep m_state;
shintamainjp 0:521ba375aa0f 283
shintamainjp 0:521ba375aa0f 284 HTTPData* m_pDataOut;
shintamainjp 0:521ba375aa0f 285 HTTPData* m_pDataIn;
shintamainjp 0:521ba375aa0f 286
shintamainjp 0:521ba375aa0f 287 bool m_dataChunked; //Data is encoded as chunks
shintamainjp 0:521ba375aa0f 288 int m_dataPos; //Position in data
shintamainjp 0:521ba375aa0f 289 int m_dataLen; //Data length
shintamainjp 0:521ba375aa0f 290 char* m_buf;
shintamainjp 0:521ba375aa0f 291 char* m_pBufRemaining; //Remaining
shintamainjp 0:521ba375aa0f 292 int m_bufRemainingLen; //Data length in m_pBufRemaining
shintamainjp 0:521ba375aa0f 293
shintamainjp 0:521ba375aa0f 294 int m_httpResponseCode;
shintamainjp 0:521ba375aa0f 295
shintamainjp 0:521ba375aa0f 296 HTTPResult m_blockingResult; //Result if blocking mode
shintamainjp 0:521ba375aa0f 297
shintamainjp 0:521ba375aa0f 298 };
shintamainjp 0:521ba375aa0f 299
shintamainjp 0:521ba375aa0f 300 //Including data containers here for more convenience
shintamainjp 0:521ba375aa0f 301 #include "data/HTTPFile.h"
shintamainjp 0:521ba375aa0f 302 #include "data/HTTPStream.h"
shintamainjp 0:521ba375aa0f 303 #include "data/HTTPText.h"
shintamainjp 0:521ba375aa0f 304 #include "data/HTTPMap.h"
shintamainjp 0:521ba375aa0f 305
shintamainjp 0:521ba375aa0f 306 #endif