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
http/https.c
- Committer:
- andrewboyson
- Date:
- 2019-09-24
- Revision:
- 130:9a5b8fe308f1
File content as of revision 130:9a5b8fe308f1:
#include <stdint.h>
#include <stdbool.h>
#include "tls.h"
#include "http.h"
bool HttpsGetTrace()
{
return HttpGetTrace() || TlsTrace;
}
void HttpsReset(int connectionId)
{
TlsReset(connectionId);
}
bool HttpsResponse(int connectionId, bool clientFinished, int* pWindowSize, uint8_t* pWindow, uint32_t windowPositionInStream)
{
return TlsResponse(connectionId, clientFinished, pWindowSize, pWindow, windowPositionInStream);
}
void HttpsRequest (int connectionId, int windowSize, uint8_t* pWindow, uint32_t windowPositionInStream)
{
TlsRequest(connectionId, windowSize, pWindow, windowPositionInStream);
}