Andrew Boyson / web

Dependents:   oldheating gps motorhome heating

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?

UserRevisionLine numberNew 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);