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
Diff: tcp/tcpsend.c
- Revision:
- 111:3600389d1add
- Parent:
- 93:580fc113d9e9
- Child:
- 120:05b6d67a0cec
--- a/tcp/tcpsend.c Fri Jan 18 17:41:06 2019 +0000 +++ b/tcp/tcpsend.c Sun Jan 20 20:31:41 2019 +0000 @@ -11,6 +11,7 @@ #include "ip4.h" #include "dhcp.h" #include "http.h" +#include "https.h" #include "led.h" #include "tcpsend.h" #include "mstimer.h" @@ -53,6 +54,9 @@ case 80: HttpSendReply(&dataLength, pData, start, mss, todo); break; + case 443: + HttpsSendReply(&dataLength, pData, start, mss, todo); + break; default: break; }