Andrew Boyson / net

Dependents:   oldheating gps motorhome heating

Committer:
andrewboyson
Date:
Sun Sep 01 18:14:13 2019 +0000
Revision:
157:b0bdb77e27f3
Parent:
156:be12b8fd5b21
Tidied parameter order in HttpShim

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 146:0fc66d610fd6 1 #include <stdint.h>
andrewboyson 146:0fc66d610fd6 2 #include <stdbool.h>
andrewboyson 146:0fc66d610fd6 3
andrewboyson 157:b0bdb77e27f3 4 extern bool HttpShimGetTrace (bool secure);
andrewboyson 157:b0bdb77e27f3 5 extern void HttpShimReset (bool secure, int connection);
andrewboyson 157:b0bdb77e27f3 6 extern void HttpShimRequest (bool secure, int connection, int size, char* pRequestStream, uint32_t positionInRequestStream);
andrewboyson 157:b0bdb77e27f3 7 extern bool HttpShimPoll (bool secure, int connection, bool clientFinished);
andrewboyson 157:b0bdb77e27f3 8
andrewboyson 147:a6093b52e654 9 extern void HttpShimAddChar (char c);
andrewboyson 157:b0bdb77e27f3 10 extern bool HttpShimBufFilled(void);