CLEANUP: ssl: Rename ssl_trace-t.h to ssl_trace.h

This header does not actually contain any structures so it's best to
remove the '-t' from the name for better consistency.
This commit is contained in:
Remi Tricot-Le Breton 2025-07-04 15:17:59 +02:00 committed by William Lallemand
parent f07f0ee21c
commit a075d6928a
5 changed files with 8 additions and 19 deletions

View File

@ -1,18 +1,7 @@
/*
* include/haproxy/ssl_trace-t.h
* Definitions for SSL traces internal types, constants and flags.
*
* Copyright (C) 2025
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version
* 2 of the License, or (at your option) any later version.
*
*/
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#ifndef _HAPROXY_SSL_TRACE_T_H
#define _HAPROXY_SSL_TRACE_T_H
#ifndef _HAPROXY_SSL_TRACE_H
#define _HAPROXY_SSL_TRACE_H
#include <haproxy/trace-t.h>
@ -36,4 +25,4 @@ extern struct trace_source trace_ssl;
#define TRACE_SOURCE &trace_ssl
#endif /* _HAPROXY_SSL_TRACE_T_H */
#endif /* _HAPROXY_SSL_TRACE_H */

View File

@ -22,7 +22,7 @@
#include <haproxy/ssl_gencert.h>
#include <haproxy/ssl_sock.h>
#include <haproxy/trace.h>
#include <haproxy/ssl_trace-t.h>
#include <haproxy/ssl_trace.h>
static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx)
{

View File

@ -63,7 +63,7 @@
#include <haproxy/ticks.h>
#include <haproxy/time.h>
#include <haproxy/trace.h>
#include <haproxy/ssl_trace-t.h>
#include <haproxy/ssl_trace.h>
#ifdef HAVE_SSL_OCSP

View File

@ -88,7 +88,7 @@
#include <haproxy/istbuf.h>
#include <haproxy/ssl_ocsp.h>
#include <haproxy/trace.h>
#include <haproxy/ssl_trace-t.h>
#include <haproxy/ssl_trace.h>
/* ***** READ THIS before adding code here! *****

View File

@ -15,7 +15,7 @@
#include <haproxy/api-t.h>
#include <haproxy/chunk.h>
#include <haproxy/trace.h>
#include <haproxy/ssl_trace-t.h>
#include <haproxy/ssl_trace.h>
#include <haproxy/connection.h>
#include <haproxy/openssl-compat.h>
#include <haproxy/ssl_sock-t.h>