summaryrefslogtreecommitdiffstats
path: root/ssl/quic/quic_obj_local.h
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2024-03-28 08:13:55 +0000
committerHugo Landau <hlandau@openssl.org>2024-04-19 09:31:06 +0100
commit723896e47fe586360f9e728d9d1197c339d8ab81 (patch)
treee2fd63735d2d32e331d14c65817c41f6b5a6ad9c /ssl/quic/quic_obj_local.h
parent93206d9b7e911c926840dca4cddb7a51dd5b1ab8 (diff)
Minor updates
Reviewed-by: Neil Horman <nhorman@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/23487)
Diffstat (limited to 'ssl/quic/quic_obj_local.h')
-rw-r--r--ssl/quic/quic_obj_local.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/ssl/quic/quic_obj_local.h b/ssl/quic/quic_obj_local.h
index d0cfa4165b..fa5b33f265 100644
--- a/ssl/quic/quic_obj_local.h
+++ b/ssl/quic/quic_obj_local.h
@@ -30,7 +30,7 @@
*
* The QUIC_OBJ is a base type for QUIC APL objects which provides functionality
* common to all QUIC objects and which supports having different APL objects
- * dynamically assume leader roles. It can therefore be seen as an extention of
+ * dynamically assume leader roles. It can therefore be seen as an extension of
* the SSL base class and extends the SSL object for QUIC APL objects. This
* avoids duplication of functionality for different types of QUIC object and
* allows access to common responsibilities of different types of APL object
@@ -64,8 +64,8 @@
*
* This structure must come at the start of a QUIC object structure definition.
*
- * ssl->type still determines the actual object type. An SSL object pointer s
- * can be safely cast to (QUIC_OBJ *) iff IS_QUIC(s) is true.
+ * ssl->type still determines the actual object type. An SSL object
+ * pointer s can be safely cast to (QUIC_OBJ *) iff IS_QUIC(s) is true.
*/
struct quic_obj_st {
/* SSL object common header. */
@@ -106,6 +106,11 @@ struct quic_obj_st {
};
/*
+ * Core Functions and Inlines
+ * ==========================
+ */
+
+/*
* Initialises a QUIC_OBJ structure with zero or more roles active. Returns 1
* on success or 0 on failure.
*
@@ -217,6 +222,8 @@ ossl_quic_obj_get0_port_local(const QUIC_OBJ *obj)
/*
* Convenience Inlines
* ===================
+ *
+ * These inlines are expressed in terms of the core functions and inlines above.
*/
/* Get a pointer to the QUIC domain mutex. Always returns non-NULL. */