summaryrefslogtreecommitdiff
path: root/include/internal/bio.h
diff options
context:
space:
mode:
authorFdaSilvaYY <fdasilvayy@gmail.com>2021-02-06 22:14:03 +0100
committerDr. Matthias St. Pierre <matthias.st.pierre@ncp-e.com>2021-02-10 23:20:58 +0100
commit3a111aadc3d24e0f325497f830a59295d0616e98 (patch)
tree73874bd905198f90c430a77e2a4252d71568fab8 /include/internal/bio.h
parentd59068bd145ad6def4cd0cff2ea2acae28543e8a (diff)
downloadopenssl-new-3a111aadc3d24e0f325497f830a59295d0616e98.tar.gz
include/internal: add a few missing #pragma once directives
Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/14096)
Diffstat (limited to 'include/internal/bio.h')
-rw-r--r--include/internal/bio.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/include/internal/bio.h b/include/internal/bio.h
index 2fb0d5cb76..12782c85a2 100644
--- a/include/internal/bio.h
+++ b/include/internal/bio.h
@@ -9,8 +9,9 @@
#ifndef OSSL_INTERNAL_BIO_H
# define OSSL_INTERNAL_BIO_H
+# pragma once
-#include <openssl/bio.h>
+# include <openssl/bio.h>
struct bio_method_st {
int type;
@@ -62,11 +63,11 @@ int bread_conv(BIO *bio, char *data, size_t datal, size_t *read);
# define BIO_clear_ktls_ctrl_msg_flag(b) \
BIO_clear_flags(b, BIO_FLAGS_KTLS_TX_CTRL_MSG)
-# define BIO_set_ktls(b, keyblob, is_tx) \
+# define BIO_set_ktls(b, keyblob, is_tx) \
BIO_ctrl(b, BIO_CTRL_SET_KTLS, is_tx, keyblob)
-# define BIO_set_ktls_ctrl_msg(b, record_type) \
+# define BIO_set_ktls_ctrl_msg(b, record_type) \
BIO_ctrl(b, BIO_CTRL_SET_KTLS_TX_SEND_CTRL_MSG, record_type, NULL)
-# define BIO_clear_ktls_ctrl_msg(b) \
+# define BIO_clear_ktls_ctrl_msg(b) \
BIO_ctrl(b, BIO_CTRL_CLEAR_KTLS_TX_CTRL_MSG, 0, NULL)
#endif