aboutsummaryrefslogtreecommitdiff
path: root/libnet/inc
diff options
context:
space:
mode:
authorMarvin Borner2020-11-22 19:22:31 +0100
committerMarvin Borner2020-11-22 19:22:31 +0100
commitd82b18c90710baf16239257272a740488fddf11c (patch)
tree9a59f9c4eb16a5d5050d430f1946d9997ae5e6db /libnet/inc
parent608fcc4075c1f28207aa177ec2d9408cc3e5e0da (diff)
Added file-based HTTP server
And fixed/added some other things
Diffstat (limited to 'libnet/inc')
-rw-r--r--libnet/inc/http.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libnet/inc/http.h b/libnet/inc/http.h
index 559ea3d..223bdfc 100644
--- a/libnet/inc/http.h
+++ b/libnet/inc/http.h
@@ -6,9 +6,10 @@
#include <def.h>
char *http_data(char *response);
+char *http_code(char *r);
u32 http_response(const char *http_code, u32 content_length, const char *data, char *resp);
char *http_query_get(const char *url, const char *path);
-char *http_code(char *r);
+char *http_query_path(const char *query, char *path);
#define HTTP_100 "100 Continue"
#define HTTP_101 "101 Switching Protocol"