diff options
author | Matus Fabian <matfabia@cisco.com> | 2024-08-06 15:55:26 +0200 |
---|---|---|
committer | Matus Fabian <matfabia@cisco.com> | 2024-08-16 13:36:34 +0200 |
commit | 5546755d1a76be9bb3b6a98fb8280f8e9a17ffd1 (patch) | |
tree | bf08e2ce2cf76830e0db75f777f1e22065794461 /src/plugins/http/http.h | |
parent | f02e7467856f20d479784e0a5e73e45d3ac8db51 (diff) |
http: http_read_message improvement
Use svm_fifo_peek in http_read_message and advance rx fifo head by
amount of bytes send to app, since not always you won't or can't
send all bytes.
Type: improvement
Change-Id: I84348c9df5c77ba386c9738a754295bb9ea0f7ef
Signed-off-by: Matus Fabian <matfabia@cisco.com>
Diffstat (limited to 'src/plugins/http/http.h')
-rw-r--r-- | src/plugins/http/http.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/http/http.h b/src/plugins/http/http.h index 19147904bfd..65aec08f3ae 100644 --- a/src/plugins/http/http.h +++ b/src/plugins/http/http.h @@ -402,6 +402,7 @@ typedef struct http_tc_ http_buffer_t tx_buf; u32 to_recv; u32 bytes_dequeued; + u32 control_data_len; /* start line + headers + empty line */ http_target_form_t target_form; u32 target_path_offset; u32 target_path_len; |