summaryrefslogtreecommitdiff
path: root/ot_http.h
diff options
context:
space:
mode:
authorDirk Engling <erdgeist@erdgeist.org>2021-04-24 03:25:30 +0200
committerDirk Engling <erdgeist@erdgeist.org>2021-04-24 03:25:30 +0200
commit95f1780f0b6229a6f52b6dbad1a645b4e91c6b06 (patch)
tree152d4f281d0eb1380fe5c4d31f32341e5ac22e50 /ot_http.h
parente87978860b1de6822db001cbc1d313694002ea28 (diff)
Split huge iovecs over multiple io_batches
Diffstat (limited to 'ot_http.h')
-rw-r--r--ot_http.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ot_http.h b/ot_http.h
index b1a60e7..40161d8 100644
--- a/ot_http.h
+++ b/ot_http.h
@@ -14,7 +14,8 @@ typedef enum {
14 14
15struct http_data { 15struct http_data {
16 array request; 16 array request;
17 io_batch batch; 17 io_batch *batch;
18 size_t batches;
18 ot_ip6 ip; 19 ot_ip6 ip;
19 STRUCT_HTTP_FLAG flag; 20 STRUCT_HTTP_FLAG flag;
20}; 21};