Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: oldheating gps motorhome heating
base/web-server-base.h@110:8ab752842d25, 2019-04-30 (annotated)
- Committer:
- andrewboyson
- Date:
- Tue Apr 30 12:45:08 2019 +0000
- Revision:
- 110:8ab752842d25
Tidied. About to rename to web.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
andrewboyson | 110:8ab752842d25 | 1 | #include <stdint.h> |
andrewboyson | 110:8ab752842d25 | 2 | #include <stdbool.h> |
andrewboyson | 110:8ab752842d25 | 3 | |
andrewboyson | 110:8ab752842d25 | 4 | extern int WebServerBaseDecideWhatToDo(char *pPath, char* pLastModified); |
andrewboyson | 110:8ab752842d25 | 5 | extern bool WebServerBaseHandleQuery (int todo, char* pQuery); |
andrewboyson | 110:8ab752842d25 | 6 | extern bool WebServerBasePost (int todo, int contentLength, int contentStart, int size, char* pRequestStream, uint32_t positionInRequestStream, bool* pComplete); |
andrewboyson | 110:8ab752842d25 | 7 | extern bool WebServerBaseReply (int todo); |