Soft'N'Design Software
/
projects
/
webserver.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
96748ca
)
echo server
author
Mazet Laurent
<mazet@softndesign.org>
Thu, 18 May 2023 20:28:21 +0000
(22:28 +0200)
committer
Mazet Laurent
<mazet@softndesign.org>
Thu, 18 May 2023 20:28:21 +0000
(22:28 +0200)
http.c
[new file with mode: 0644]
patch
|
blob
diff --git a/http.c
b/http.c
new file mode 100644
(file)
index 0000000..
288d7b0
--- /dev/null
+++ b/
http.c
@@ -0,0
+1,13
@@
+#include <malloc.h>
+#include <string.h>
+
+#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: */