summaryrefslogtreecommitdiffstats
path: root/include/internal/bio.h
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2022-08-01 10:33:00 +0100
committerHugo Landau <hlandau@openssl.org>2022-08-19 09:01:30 +0100
commite0c4e43e40390e44614d14817e34b47e1c17d630 (patch)
tree7448a600dab52bff8359fcb6b10d29d796cf185f /include/internal/bio.h
parent709d4be78f64a8ba0707fb5682b90039e848dad4 (diff)
BIO_sendmmsg/BIO_recvmmsg (API only)
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/18923)
Diffstat (limited to 'include/internal/bio.h')
-rw-r--r--include/internal/bio.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/internal/bio.h b/include/internal/bio.h
index 547a73d02d..40218e1fb0 100644
--- a/include/internal/bio.h
+++ b/include/internal/bio.h
@@ -27,6 +27,8 @@ struct bio_method_st {
int (*create) (BIO *);
int (*destroy) (BIO *);
long (*callback_ctrl) (BIO *, int, BIO_info_cb *);
+ int (*bsendmmsg) (BIO *, BIO_MSG *, size_t, size_t, uint64_t, size_t *);
+ int (*brecvmmsg) (BIO *, BIO_MSG *, size_t, size_t, uint64_t, size_t *);
};
void bio_free_ex_data(BIO *bio);