2020-06-28 13:45:31 +02:00
|
|
|
#include "HTTPParser.h"
|
|
|
|
#include "StringFormatter.h"
|
|
|
|
|
2020-06-29 12:37:05 +02:00
|
|
|
void HTTPParser::parse(Print & stream, byte * cmd) {
|
|
|
|
(void)cmd; // Avoid compiler warning because this example doesnt use this parameter
|
|
|
|
|
2020-06-28 13:45:31 +02:00
|
|
|
// BEWARE - As soon as you start responding, the cmd buffer is trashed!
|
|
|
|
// You must get everything you need from it before using StringFormatter::send!
|
|
|
|
|
|
|
|
StringFormatter::send(stream,F("HTTP/1.1 200 OK\nContent-Type: text/html\nConnnection: close\n\n"));
|
|
|
|
StringFormatter::send(stream,F("<html><body>This is <b>not</b> a web server.<br/></body></html>"));
|
|
|
|
}
|