Convert v2.x webpage to v3.x
Posted: Wed Nov 10, 2021 1:30 pm
I have a webpage that was developed in the v2.x tools for the NANO and MOD5541X. I set a new Get Handler to handle special requests from the webpage.
But v3.x doesn't have a SetNewGetHandler function. How do I accomplish the same thing in v3.x?
I'm using v3.3.4.
Code: Select all
void init()
{
StartHttps();
default_page = "index.htm";
OldHttpHandler = SetNewGetHandler( MyHttpHandler );
}
int MyHttpHandler(int sock, PSTR url, PSTR rxb)
{
iprintf("HTTP request: [%s]\r\n", url);
// special request?
if (url && strlen(url)>5)
{
if (httpstricmp(url,"O2SETTINGS_")) // dump settings?
{
SendTextHeader(sock);
WebDumpSettings(sock);
return 0;
}
else if (httpstricmp(url,"EVENTLOG_")) // full eventlog?
{
SendTextHeader( sock );
WebWriteFullEventlog(sock);
return 0;
}
else if (httpstricmp(url,"CALDATA")) // calibration block?
{
WriteWebCal(sock);
return 0;
}
}
return OldHttpHandler(sock, url, rxb); // A routine status update.
}
I'm using v3.3.4.