Add simple HTTP server

This commit is contained in:
Kamil Trzcinski
2022-04-04 18:27:28 +02:00
parent c8fb6b0780
commit 317fb65508
5 changed files with 101 additions and 1 deletions

7
http.h Normal file
View File

@@ -0,0 +1,7 @@
#pragma once
#include "v4l2.h"
int http_listen(int listen_port, int maxcons);
int http_worker(int listenfd);
int http_worker_threads(int listenfd, int nthreads);