From a197bd9bac7488fbc1e5cbdaf1da2e3edc19acf0 Mon Sep 17 00:00:00 2001 From: Joris Vink Date: Thu, 21 Aug 2014 13:52:27 +0200 Subject: [PATCH] turn status into an u_int16_t --- includes/http.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/http.h b/includes/http.h index 109a8bc..42db119 100644 --- 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;