diff options
author | Florin Coras <fcoras@cisco.com> | 2022-02-11 11:59:04 -0800 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2022-02-11 19:55:17 +0000 |
commit | 360aee3e00c1211840b5a946a274ef1c496d5aa2 (patch) | |
tree | 42d8d7bedb5de3ce76f807fecf44ee742f16e731 /src/plugins/http/http.h | |
parent | d37328eb8b255135c9e0599650d994949e61cd27 (diff) |
http: fix support for files larger than u32
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Iad7304c3a8fef14ec85c4240714feb86637411ca
Diffstat (limited to 'src/plugins/http/http.h')
-rw-r--r-- | src/plugins/http/http.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/http/http.h b/src/plugins/http/http.h index 85d43a489e2..8a5731ea592 100644 --- a/src/plugins/http/http.h +++ b/src/plugins/http/http.h @@ -116,7 +116,7 @@ typedef enum http_msg_data_type_ typedef struct http_msg_data_ { http_msg_data_type_t type; - u32 len; + u64 len; u8 data[0]; } http_msg_data_t; |