added webserver

This commit is contained in:
Dennis Gunia
2025-09-18 15:59:15 +02:00
parent cd832083c4
commit d1304224a0
11 changed files with 1167 additions and 137 deletions

View File

@@ -0,0 +1,11 @@
#include <json-c/json_object.h>
#include <json-c/json_tokener.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <wsserver/ws.h>
#define WS_SERVER_PORT 8080
#define WS_SERVER_ADDR "localhost"
int start_webserver();