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
base/net/web-net-ajax.c@143:cc2e148cb96a, 2020-12-26 (annotated)
- Committer:
- andrewboyson
- Date:
- Sat Dec 26 19:38:40 2020 +0000
- Revision:
- 143:cc2e148cb96a
- Parent:
- 132:5b2df69a4f17
- Child:
- 146:6bc151bd7063
First part of moving DNs from ipv6 to net
Who changed what in which revision?
| User | Revision | Line number | New contents of line | 
|---|---|---|---|
| andrewboyson | 132:5b2df69a4f17 | 1 | |
| andrewboyson | 132:5b2df69a4f17 | 2 | #include "http.h" | 
| andrewboyson | 132:5b2df69a4f17 | 3 | #include "mac.h" | 
| andrewboyson | 132:5b2df69a4f17 | 4 | #include "tcb.h" | 
| andrewboyson | 143:cc2e148cb96a | 5 | #include "nr.h" | 
| andrewboyson | 132:5b2df69a4f17 | 6 | |
| andrewboyson | 132:5b2df69a4f17 | 7 | void WebNetAjax() | 
| andrewboyson | 132:5b2df69a4f17 | 8 | { | 
| andrewboyson | 132:5b2df69a4f17 | 9 | HttpOk("text/plain; charset=UTF-8", "no-cache", NULL, NULL); | 
| andrewboyson | 132:5b2df69a4f17 | 10 | |
| andrewboyson | 132:5b2df69a4f17 | 11 | for (int b = 0; b < 6; b++) HttpAddByteAsHex(MacLocal[b]); | 
| andrewboyson | 132:5b2df69a4f17 | 12 | HttpAddChar('\n'); | 
| andrewboyson | 132:5b2df69a4f17 | 13 | HttpAddChar('\f'); | 
| andrewboyson | 132:5b2df69a4f17 | 14 | |
| andrewboyson | 132:5b2df69a4f17 | 15 | TcbSendAjax(); | 
| andrewboyson | 143:cc2e148cb96a | 16 | HttpAddChar('\f'); | 
| andrewboyson | 143:cc2e148cb96a | 17 | |
| andrewboyson | 143:cc2e148cb96a | 18 | NrSendAjax(); | 
| andrewboyson | 132:5b2df69a4f17 | 19 | } |