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/https/https.h@166:89e3ce39b31b, 2020-04-02 (annotated)
- Committer:
- andrewboyson
- Date:
- Thu Apr 02 11:58:33 2020 +0000
- Revision:
- 166:89e3ce39b31b
Added a httpv (vanilla HTTP) module to TCP which does a similar job to https (HTTP over TCP) and allows the http module to be independent of its caller.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
andrewboyson | 166:89e3ce39b31b | 1 | #include <stdint.h> |
andrewboyson | 166:89e3ce39b31b | 2 | #include <stdbool.h> |
andrewboyson | 166:89e3ce39b31b | 3 | |
andrewboyson | 166:89e3ce39b31b | 4 | extern bool HttpsGetTrace(void); |
andrewboyson | 166:89e3ce39b31b | 5 | extern void HttpsReset (int connectionId); |
andrewboyson | 166:89e3ce39b31b | 6 | extern bool HttpsResponse(int connectionId, bool clientFinished, int* pWindowSize, uint8_t* pWindow, uint32_t windowPositionInStream); |
andrewboyson | 166:89e3ce39b31b | 7 | extern void HttpsRequest (int connectionId, int windowSize, uint8_t* pWindow, uint32_t windowPositionInStream); |