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
tcp/http/httpshim/httpshim.h@157:b0bdb77e27f3, 2019-09-01 (annotated)
- 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?
| User | Revision | Line number | New 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); |