summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2023-05-22 15:00:00 +0100
committerMatt Caswell <matt@openssl.org>2023-05-24 12:18:33 +0100
commitc2786c8ea732592f708e588f0f5849716914a313 (patch)
treee1c7ee8bafe4ab1a16f475e402e77c4e02fe65be /include
parent7802170f7c1d2b89c2610b7affddb3d1b26fc87d (diff)
Rename msg_callback_s to msg_callback_ssl for greater clarity
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20914)
Diffstat (limited to 'include')
-rw-r--r--include/internal/quic_channel.h2
-rw-r--r--include/internal/quic_record_rx.h2
-rw-r--r--include/internal/quic_record_tx.h2
-rw-r--r--include/internal/quic_txp.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/include/internal/quic_channel.h b/include/internal/quic_channel.h
index 74ee125f34..25b6758d8d 100644
--- a/include/internal/quic_channel.h
+++ b/include/internal/quic_channel.h
@@ -326,7 +326,7 @@ int ossl_quic_channel_replace_local_cid(QUIC_CHANNEL *ch,
/* Setters for the msg_callback and msg_callback_arg */
void ossl_quic_channel_set_msg_callback(QUIC_CHANNEL *ch,
ossl_msg_cb msg_callback,
- SSL *msg_callback_s);
+ SSL *msg_callback_ssl);
void ossl_quic_channel_set_msg_callback_arg(QUIC_CHANNEL *ch,
void *msg_callback_arg);
diff --git a/include/internal/quic_record_rx.h b/include/internal/quic_record_rx.h
index b86d9a98b5..ece16a3bfc 100644
--- a/include/internal/quic_record_rx.h
+++ b/include/internal/quic_record_rx.h
@@ -62,7 +62,7 @@ void ossl_qrx_free(OSSL_QRX *qrx);
/* Setters for the msg_callback and msg_callback_arg */
void ossl_qrx_set_msg_callback(OSSL_QRX *qrx, ossl_msg_cb msg_callback,
- SSL *msg_callback_s);
+ SSL *msg_callback_ssl);
void ossl_qrx_set_msg_callback_arg(OSSL_QRX *qrx,
void *msg_callback_arg);
diff --git a/include/internal/quic_record_tx.h b/include/internal/quic_record_tx.h
index a12c3abe00..8b4e1705cb 100644
--- a/include/internal/quic_record_tx.h
+++ b/include/internal/quic_record_tx.h
@@ -60,7 +60,7 @@ void ossl_qtx_set_mutator(OSSL_QTX *qtx, ossl_mutate_packet_cb mutatecb,
/* Setters for the msg_callback and the msg_callback_arg */
void ossl_qtx_set_msg_callback(OSSL_QTX *qtx, ossl_msg_cb msg_callback,
- SSL *msg_callback_s);
+ SSL *msg_callback_ssl);
void ossl_qtx_set_msg_callback_arg(OSSL_QTX *qtx, void *msg_callback_arg);
/*
diff --git a/include/internal/quic_txp.h b/include/internal/quic_txp.h
index ad1c06f31e..b8740f5440 100644
--- a/include/internal/quic_txp.h
+++ b/include/internal/quic_txp.h
@@ -170,7 +170,7 @@ int ossl_quic_tx_packetiser_schedule_conn_close(OSSL_QUIC_TX_PACKETISER *txp,
/* Setters for the msg_callback and msg_callback_arg */
void ossl_quic_tx_packetiser_set_msg_callback(OSSL_QUIC_TX_PACKETISER *txp,
ossl_msg_cb msg_callback,
- SSL *msg_callback_s);
+ SSL *msg_callback_ssl);
void ossl_quic_tx_packetiser_set_msg_callback_arg(OSSL_QUIC_TX_PACKETISER *txp,
void *msg_callback_arg);