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 a197bd9bac7488fbc1e5cbdaf1da2e3edc19acf0
parent d3149a2a71ca94c740c6981779b19b87e7079549
Author: Joris Vink <joris@coders.se>
Date:   Thu, 21 Aug 2014 13:52:27 +0200

turn status into an u_int16_t

Diffstat:
includes/http.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/includes/http.h b/includes/http.h @@ -163,7 +163,7 @@ struct http_request { u_int8_t method; u_int8_t flags; u_int8_t fsm_state; - int status; + u_int16_t status; u_int64_t start; u_int64_t end; u_int64_t total;