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 ee52746a7a92699d08b0acfa3faeadd98c461149
parent 8e9c3da764c0ff9bfd28cbba3d051ef9901d8fdb
Author: Joris Vink <joris@coders.se>
Date:   Fri, 19 Sep 2014 12:38:52 +0200

indenting

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

diff --git a/includes/http.h b/includes/http.h @@ -182,12 +182,12 @@ struct http_request { LIST_HEAD(, kore_task) tasks; LIST_HEAD(, kore_pgsql) pgsqls; - TAILQ_HEAD(, http_header) req_headers; - TAILQ_HEAD(, http_header) resp_headers; - TAILQ_HEAD(, http_arg) arguments; - TAILQ_HEAD(, http_file) files; - TAILQ_ENTRY(http_request) list; - TAILQ_ENTRY(http_request) olist; + TAILQ_HEAD(, http_header) req_headers; + TAILQ_HEAD(, http_header) resp_headers; + TAILQ_HEAD(, http_arg) arguments; + TAILQ_HEAD(, http_file) files; + TAILQ_ENTRY(http_request) list; + TAILQ_ENTRY(http_request) olist; }; struct http_state {