From: Matt Caswell Date: Mon, 22 May 2023 14:23:21 +0000 (+0100) Subject: Create internal/ssl.h X-Git-Tag: openssl-3.2.0-alpha1~754 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=674b61ebd982d6a6564ac1f90d8cde22371564bc;p=thirdparty%2Fopenssl.git Create internal/ssl.h We create the internal/ssl.h header file and move the typedef for ossl_msg_cb. This is needed by both the QUIC code (which generally doesn't include ssl_local.h) and the rest of libssl. Reviewed-by: Tomas Mraz Reviewed-by: Hugo Landau (Merged from https://github.com/openssl/openssl/pull/20914) --- diff --git a/include/internal/quic_types.h b/include/internal/quic_types.h index 2fa36d46e96..830c755779a 100644 --- a/include/internal/quic_types.h +++ b/include/internal/quic_types.h @@ -11,6 +11,7 @@ # define OSSL_QUIC_TYPES_H # include +# include # include # include @@ -95,9 +96,6 @@ static ossl_unused ossl_inline int ossl_quic_conn_id_eq(const QUIC_CONN_ID *a, # define QUIC_STATELESS_RESET_TOKEN_LEN 16 -typedef void (*ossl_msg_cb)(int write_p, int version, int content_type, - const void *buf, size_t len, SSL *ssl, void *arg); - # endif #endif diff --git a/include/internal/ssl.h b/include/internal/ssl.h new file mode 100644 index 00000000000..3bf9bf9e34d --- /dev/null +++ b/include/internal/ssl.h @@ -0,0 +1,19 @@ +/* + * Copyright 2023 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#include + +#ifndef OSSL_INTERNAL_SSL_H +# define OSSL_INTERNAL_SSL_H +# pragma once + +typedef void (*ossl_msg_cb)(int write_p, int version, int content_type, + const void *buf, size_t len, SSL *ssl, void *arg); + +#endif diff --git a/ssl/ssl_local.h b/ssl/ssl_local.h index be834d8f688..69a578dc5cb 100644 --- a/ssl/ssl_local.h +++ b/ssl/ssl_local.h @@ -36,6 +36,7 @@ # include "internal/bio.h" # include "internal/ktls.h" # include "internal/time.h" +# include "internal/ssl.h" # include "record/record.h" # ifdef OPENSSL_BUILD_SHLIBSSL @@ -799,9 +800,6 @@ typedef struct { # define TLS_GROUP_FFDHE_FOR_TLS1_3 (TLS_GROUP_FFDHE|TLS_GROUP_ONLY_FOR_TLS1_3) -typedef void (*ossl_msg_cb)(int write_p, int version, int content_type, - const void *buf, size_t len, SSL *ssl, void *arg); - struct ssl_ctx_st { OSSL_LIB_CTX *libctx;