Merge upstream/main into the Spanning Tree branch

This commit is contained in:
d00f
2026-08-31 22:48:14 +02:00
11 changed files with 127 additions and 51 deletions
+7 -2
View File
@@ -773,8 +773,13 @@ void httpd_appcall(void)
goto do_send;
}
if (is_word(p, "GET"))
dbg_string("GET request ");
// We only expect a GET request here.
if (!is_word(p, "GET")) {
send_bad_request();
goto do_send;
}
dbg_string("GET request ");
p += 4;
scan_header(p);
__xdata uint8_t *q = p;