Go to the source code of this file.
|
| BA_API void | HttpAsynchReq_constructor (HttpAsynchReq *o, HttpServer *server, HttpAsynchReq_OnData data) |
| | Create an instance of HttpAsynchReq. More...
|
| |
| BA_API void | HttpAsynchReq_destructor (HttpAsynchReq *o) |
| |
| BA_API SBaFileSize | HttpAsynchReq_calcPacketSize (HttpRequest *req) |
| | Inspect the request's body framing without consuming it. More...
|
| |
| BA_API int | HttpAsynchReq_start (HttpAsynchReq *o, HttpRequest *req, void *buffer, S32 bufferSize) |
| | Take over the request connection and start asynchronous reception. More...
|
| |
| BA_API void | HttpAsynchReq_stop (HttpAsynchReq *o) |
| |
| BA_API HttpConnection * | HttpAsynchReq_getCon (HttpAsynchReq *o) |
| | Stop receiving and expose the embedded connection for handoff. More...
|
| |
| BA_API void | HttpAsynchReqResp_constructor (HttpAsynchReqResp *o, HttpServer *server, HttpAsynchReq_OnData data) |
| | Initialize combined receive/response state. More...
|
| |
| BA_API int | HttpAsynchReqResp_start (HttpAsynchReqResp *o, HttpRequest *req, void *recBuf, S32 recBufSize, void *sendBuf, S32 sendBufSize) |
| | Start the HttpAsynchReqResp object. More...
|
| |
| BA_API int | HttpAsynchReqResp_startResp (HttpAsynchReqResp *o, HttpRequest *req, void *sendBuf, S32 sendBufSize) |
| | Start response if you know that all data was received by the web-server. More...
|
| |