From 68be64e2c12f6ab5355a147484896eae12d2b166 Mon Sep 17 00:00:00 2001 From: Laslo Hunhold Date: Sat, 22 Aug 2020 23:31:32 +0200 Subject: [PATCH] Remove unused field in the request-struct Signed-off-by: Laslo Hunhold --- http.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/http.h b/http.h index 5226dca..2ee79af 100644 --- a/http.h +++ b/http.h @@ -27,8 +27,6 @@ enum req_method { extern const char *req_method_str[]; struct request { - char header[HEADER_MAX]; /* deprecated */ - enum req_method method; char target[PATH_MAX]; char field[NUM_REQ_FIELDS][FIELD_MAX];