* Add HTTP-parser lib to support ESP32 WebServer * Add WebServer from ESP32. Only supports HTTP * Separate HTTP server from the network server Instead of managing the WiFiServer/WiFiServerSecure in the same object as the HTTP handling, split them into separate objects. This lets HTTP and HTTPS servers work without templates or duplicating code. The HTTP block just gets a `WiFiClient*` and works with that to only do HTTP processing, while the upper object handles the appropriate server and client types. * Add HTTPS server * Clean up some THandlerFunction refs * Refactor into a template-ized WebServer/WebServerSecure * Add DNSServer examples which need WebServer * Fix CoreMutex infinite recursion crash Core could crash while Serial debugging was going on and prints were happening from LWIP/IRQ land and the main app. * Add HTTPUpdateServer(Secure) * Add MIME include, optimize WebServer::send(size,len) When send()ing a large buffer, the WebServer::send() call would actually convert that buffer into a String (i.e. duplicate it, and potential issues with embedded \0s in binary data). Make a simple override to send(size, len) to allow writing from the source buffer instead. * Fix WiFiClient::send(Stream), add FSBrowser example
11 lines
356 B
INI
11 lines
356 B
INI
name=http-parser
|
|
version=2.9.4
|
|
author=Node.JS team
|
|
maintainer=Earle F. Philhower, III <earlephilhower@yahoo.com>
|
|
sentence=HTTP parser from Node.js team, MIT license
|
|
paragraph=HTTP parser from Node.js team, MIT license
|
|
category=communications
|
|
url=https://github.com/earlephilhower/arduino-pico
|
|
architectures=rp2040
|
|
dot_a_linkage=true
|
|
includes=http_parser.h
|