Your ROOT_URL in app.ini is https://git.ondrovo.com/ but you are visiting http://159.69.29.240:49153/MightyPork/spritehttpd/src/commit/5b343dd687733ca7ef9ef926c838173316b3804a/fstool/httpd-heap.h
You should set ROOT_URL correctly, otherwise the web may not work correctly.
SpriteHTTPD - embedded HTTP server with read-only filesystem and templating, originally developed for ESP8266, now stand-alone and POSIX compatible.
|
/**
|
|
* HTTPD malloc/free wrappers with debug instrumentation
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <malloc.h>
|
|
|
|
#define httpdMalloc(len) malloc((len))
|
|
#define httpdFree(ptr) free((ptr))
|
|
|