mirror of
https://github.com/jeelabs/esp-link.git
synced 2026-03-09 02:36:48 +01:00
This also ups the post buffer to 1460 to match the TCP packet size WIP: The cgi function to update the espfs is not complete
12 lines
306 B
C
12 lines
306 B
C
#ifndef CGI_H
|
|
#define CGI_H
|
|
|
|
#include "httpd.h"
|
|
|
|
int cgiLed(HttpdConnData *connData);
|
|
void tplLed(HttpdConnData *connData, char *token, void **arg);
|
|
int cgiReadFlash(HttpdConnData *connData);
|
|
void tplCounter(HttpdConnData *connData, char *token, void **arg);
|
|
int updateWeb(HttpdConnData *connData);
|
|
|
|
#endif |