From d0b0d52bd4c8816c538d7704a6bf95f3dad310b2 Mon Sep 17 00:00:00 2001 From: Mazet Laurent Date: Thu, 18 May 2023 22:28:21 +0200 Subject: [PATCH] echo server --- http.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 http.c diff --git a/http.c b/http.c new file mode 100644 index 0000000..288d7b0 --- /dev/null +++ b/http.c @@ -0,0 +1,13 @@ +#include +#include + +#include "debug.h" + +#include "http.h" + +int processing (unsigned char *data, int len, unsigned char **pdata) { + *pdata = data; + return len; +} + +/* vim: set ts=4 sw=4 et: */ -- 2.30.2