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
net/http-net-html.c
- Committer:
- andrewboyson
- Date:
- 2019-04-08
- Revision:
- 86:f3c9beec4ee7
- Parent:
- 77:4689596a2f3f
File content as of revision 86:f3c9beec4ee7:
#include "http.h"
#include "http-server.h"
#include "page.h"
#include "net.h"
#include "mac.h"
#include "ip4.h"
#include "ar4.h"
#include "nr4.h"
#include "dhcp.h"
void HttpNetHtml()
{
HttpOk("text/html; charset=UTF-8", "no-cache", NULL, NULL);
PageAddHeader(PageSite, "Net", "settings.css", NULL);
PageAddNav(NET_PAGE);
PageAddH1(PageSite, "Net");
PageAddH2("Ethernet");
PageAddLabelledMac ("MAC", MacLocal);
PageAddEnd();
}