You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
353 B
12 lines
353 B
#ifndef CGI_PING_H
|
|
#define CGI_PING_H
|
|
|
|
#include <esp8266.h>
|
|
#include <httpd.h>
|
|
|
|
httpd_cgi_state cgiPing(HttpdConnData *connData);
|
|
httpd_cgi_state cgiResetDevice(HttpdConnData *connData);
|
|
httpd_cgi_state cgiSystemCfgSetParams(HttpdConnData *connData);
|
|
httpd_cgi_state tplSystemCfg(HttpdConnData *connData, char *token, void **arg);
|
|
|
|
#endif // CGI_PING_H
|
|
|