mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
21 lines
546 B
C
21 lines
546 B
C
#pragma once
|
|
#include "Global.h"
|
|
#ifdef STANDARD_WEB_SERVER
|
|
extern void standWebServerInit();
|
|
|
|
extern void standWebServerFiles();
|
|
extern bool handleFileRead(String path);
|
|
extern String getContentType(String filename);
|
|
|
|
#ifdef REST_FILE_OPERATIONS
|
|
extern void handleFileUpload();
|
|
extern void handleFileDelete();
|
|
extern void handleFileCreate();
|
|
extern void handleFileList();
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef STANDARD_WEB_SOCKETS
|
|
extern void standWebSocketsInit();
|
|
extern void webSocketEvent(uint8_t num, WStype_t type, uint8_t* payload, size_t length);
|
|
#endif |