http.h
1 #pragma once 2 #include <stddef.h> 3 4 namespace services::http { 5 6 void initialize(); 7 void service(); 8 void emitEvent(const char *data, const char *event, unsigned long id); 9 size_t sseClientCount(); 10 size_t sseAvgPacketsWaiting(); 11 12 #ifdef PIO_UNIT_TESTING 13 void test(); 14 #endif 15 16 } 17