Add broker management and writer transfer UI

This commit is contained in:
2026-09-13 13:59:28 +02:00
parent 29a4953df0
commit fa12440606
26 changed files with 1037 additions and 48 deletions
+7 -1
View File
@@ -19,7 +19,7 @@ static struct httpd_data server = {.config.max_resp_headers = 8};
static struct sock_db socket_state;
static struct resp_hdr response_headers[8];
static char scratch[1024], cookie_values[2][200];
#ifdef HOST_NETWORK
#if defined(HOST_NETWORK) || defined(HOST_BROKER)
static char output[2048];
#else
static char output[1024];
@@ -146,6 +146,9 @@ static void auth_reset(void) {
#ifdef HOST_DISPLAY
#include "display_settings_test.c"
#endif
#ifdef HOST_BROKER
#include "broker_settings_test.c"
#endif
int main(void) {
assert(store_tests() == 0); auth_reset();
@@ -308,6 +311,9 @@ int main(void) {
#endif
#ifdef HOST_DISPLAY
display_settings_tests();
#endif
#ifdef HOST_BROKER
broker_settings_tests();
#endif
return 0;
}