kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit f86673b97b863f695ca59f67aacbfd5e13980cdc
parent c7dcdbcd82438a3d520f8e3ba0fb2a4b3dc71ca8
Author: Joris Vink <joris@coders.se>
Date:   Thu, 12 Dec 2013 01:04:35 +0100

Remove some stuff that wasn't suppose to be here

Diffstat:
includes/http.h | 11-----------
1 file changed, 0 insertions(+), 11 deletions(-)

diff --git a/includes/http.h b/includes/http.h @@ -171,17 +171,6 @@ int http_file_lookup(struct http_request *, char *, char **, void kore_accesslog(struct http_request *); -static inline char * -http_argument_string(struct http_request *r, char *n) -{ - char *str; - - if (http_argument_get(r, n, (void **)&str, NULL, HTTP_ARG_TYPE_STRING)) - return (str); - - return (NULL); -} - enum http_status_code { HTTP_STATUS_CONTINUE = 100, HTTP_STATUS_SWITCHING_PROTOCOLS = 101,