Coverage Report

Created: 2026-09-12 06:55

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl41/ssl/quic/quic_obj_local.h
Line
Count
Source
1
/*
2
 * Copyright 2024-2026 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the Apache License 2.0 (the "License").  You may not use
5
 * this file except in compliance with the License.  You can obtain a copy
6
 * in the file LICENSE in the source distribution or at
7
 * https://www.openssl.org/source/license.html
8
 */
9
10
#ifndef OSSL_QUIC_OBJ_LOCAL_H
11
#define OSSL_QUIC_OBJ_LOCAL_H
12
13
#include <openssl/ssl.h>
14
#include "internal/quic_predef.h"
15
#include "internal/quic_engine.h"
16
#include "../ssl_local.h"
17
18
#ifndef OPENSSL_NO_QUIC
19
20
/*
21
 * QUIC Object Structure.
22
 *
23
 * In the libssl APL, we have QLSOs, QCSOs and QSSOs, and in the future might
24
 * choose to introduce QDSOs. There are also roles such as Port Leader and Event
25
 * Leader which can be assumed by these different types under different
26
 * circumstances — in other words, whether an APL object is a Port or Event
27
 * Leader is not a static function of its type and these roles can 'float'
28
 * dynamically depending on the circumstances under which an APL object was
29
 * created.
30
 *
31
 * The QUIC_OBJ is a base type for QUIC APL objects which provides functionality
32
 * common to all QUIC objects and which supports having different APL objects
33
 * dynamically assume leader roles. It can therefore be seen as an extension of
34
 * the SSL base class and extends the SSL object for QUIC APL objects. This
35
 * avoids duplication of functionality for different types of QUIC object and
36
 * allows access to common responsibilities of different types of APL object
37
 * without regard to the kind of APL object we are dealing with.
38
 *
39
 * The "inheritance" hierarchy is as follows:
40
 *
41
 *   SSL
42
 *      SSL_CONNECTION
43
 *      QUIC_OBJ
44
 *          QUIC_DOMAIN         (QDSO) -> QUIC_ENGINE  *E
45
 *          QUIC_LISTENER       (QLSO) -> QUIC_PORT     eP
46
 *          QUIC_CONNECTION     (QCSO) -> QUIC_CHANNEL  epCs
47
 *          QUIC_XSO            (QSSO) -> QUIC_STREAM      S
48
 *
49
 * Legend:
50
 *
51
 *   *: Not currently modelled in the APL, though QUIC_ENGINE exists internally.
52
 *
53
 *   E: Always an event leader if it exists.
54
 *   e: Potentially an event leader (namely if it is the root APL object in a
55
 *      hierarchy).
56
 *
57
 *   P: Always a port leader if it exists.
58
 *   p: Potentially a port leader (namely if there is no port leader above it).
59
 *
60
 *   C: Always a connection leader.
61
 *
62
 *   s: Potentially usable as a stream (if it has a default stream attached).
63
 *   S: Always has the stream role if it exists.
64
 *
65
 * This structure must come at the start of a QUIC object structure definition.
66
 *
67
 * ssl->type still determines the actual object type. An SSL object
68
 * pointer s can be safely cast to (QUIC_OBJ *) iff IS_QUIC(s) is true.
69
 */
70
struct quic_obj_st {
71
    /* SSL object common header. */
72
    struct ssl_st ssl;
73
74
    /*
75
     * Pointer to a parent APL object in a QUIC APL object hierarchy, or NULL if
76
     * this is the root object.
77
     */
78
    QUIC_OBJ *parent_obj;
79
80
    /* invariant: != NULL */
81
    QUIC_OBJ *cached_event_leader;
82
    /* invariant: != NULL iff this is a port leader or subsidiary object */
83
    QUIC_OBJ *cached_port_leader;
84
85
    /*
86
     * Points to the QUIC_ENGINE instance. Always equals
87
     * cached_event_leader->engine. The containing_obj APL object owns this
88
     * instance iff is_event_leader is set, otherwise it is an additional
89
     * reference cached for convenience. Unlike port this is never NULL because
90
     * a QUIC domain is always rooted in an event leader.
91
     */
92
    QUIC_ENGINE *engine;
93
94
    /*
95
     * Points to the QUIC_PORT instance applicable to the containing_obj APL
96
     * object, or NULL if we are not at or below a port leader. Always equals
97
     * cached_port_leader->port. The containing_obj APL object owns this
98
     * instance iff is_port_leader is set, otherwise it is an additional
99
     * reference cached for convenience.
100
     */
101
    QUIC_PORT *port;
102
103
    /* Effective SSL_DOMAIN_FLAG values inherited from the object hierarchy. */
104
    uint64_t domain_flags;
105
106
    unsigned int init_done : 1;
107
    unsigned int is_event_leader : 1;
108
    unsigned int is_port_leader : 1;
109
110
    /*
111
     * Blocking mode configuration is handled generically through QUIC_OBJ as it
112
     * by default inherits from the parent SSL object.
113
     */
114
    unsigned int req_blocking_mode : 2; /* QUIC_BLOCKING_MODE */
115
116
    /* Event handling mode. One of SSL_QUIC_VALUE_EVENT_HANDLING. */
117
    unsigned int event_handling_mode : 2;
118
};
119
120
enum {
121
    QUIC_BLOCKING_MODE_INHERIT,
122
    QUIC_BLOCKING_MODE_NONBLOCKING,
123
    QUIC_BLOCKING_MODE_BLOCKING
124
};
125
126
/*
127
 * Core Functions and Inlines
128
 * ==========================
129
 */
130
131
/*
132
 * Initialises a QUIC_OBJ structure with zero or more roles active. Returns 1
133
 * on success or 0 on failure.
134
 *
135
 * ctx: A SSL_CTX used to initialise the SSL base object structure.
136
 *
137
 * type: A SSL_TYPE_* value designating the SSL object type.
138
 *
139
 * parent_obj: NULL if this is the root APL object in a new hierarchy, or a
140
 * pointer to the parent APL object otherwise.
141
 *
142
 * engine: If non-NULL, this object becomes the Event Leader. parent_obj must be
143
 * NULL iff this is non-NULL as currently the Event Leader is always the root in
144
 * an APL object hierarchy. If NULL, the contextually applicable engine is
145
 * determined by using parent_obj and ancestors to find the Event Leader.
146
 *
147
 * port: If non-NULL, this object becomes a Port Leader. If NULL, the
148
 * contextually applicable port (if any) is determined by using parent_obj and
149
 * ancestors to find the Port Leader.
150
 */
151
int ossl_quic_obj_init(QUIC_OBJ *obj,
152
    SSL_CTX *ctx,
153
    int type,
154
    SSL *parent_obj,
155
    QUIC_ENGINE *engine,
156
    QUIC_PORT *port);
157
158
/* Reparent a standalone leader; the caller must release its old resources. */
159
void ossl_quic_obj_reparent(QUIC_OBJ *obj, QUIC_OBJ *parent);
160
161
/*
162
 * Returns a pointer to the handshake layer object which should be accessible on
163
 * obj for purposes of handshake API autoforwarding, if any.
164
 *
165
 * This returns NULL if a handshake layer SSL object is available but should not
166
 * be used for autoforwarding purposes, for example on a QSSO.
167
 */
168
SSL_CONNECTION *ossl_quic_obj_get0_handshake_layer(QUIC_OBJ *obj);
169
170
/*
171
 * Returns a pointer to the SSL base object structure. Returns NULL if obj is
172
 * NULL. If obj is non-NULL, it must be initialised.
173
 */
174
static ossl_inline ossl_unused SSL *
175
ossl_quic_obj_get0_ssl(QUIC_OBJ *obj)
176
0
{
177
0
    /*
178
0
     * ->ssl is guaranteed to have an offset of 0 but the NULL check here makes
179
0
     *  ubsan happy.
180
0
     */
181
0
    if (!ossl_assert(obj != NULL))
182
0
        return NULL;
183
0
184
0
    return &obj->ssl;
185
0
}
Unexecuted instantiation: ssl_lib.c:ossl_quic_obj_get0_ssl
Unexecuted instantiation: t1_lib.c:ossl_quic_obj_get0_ssl
Unexecuted instantiation: quic_impl.c:ossl_quic_obj_get0_ssl
Unexecuted instantiation: quic_method.c:ossl_quic_obj_get0_ssl
Unexecuted instantiation: quic_obj.c:ossl_quic_obj_get0_ssl
Unexecuted instantiation: quic_port.c:ossl_quic_obj_get0_ssl
Unexecuted instantiation: quic_thread_assist.c:ossl_quic_obj_get0_ssl
Unexecuted instantiation: rec_layer_s3.c:ossl_quic_obj_get0_ssl
Unexecuted instantiation: quic_rx_depack.c:ossl_quic_obj_get0_ssl
186
187
/*
188
 * Determines the applicable engine and return a pointer to it. Never returns
189
 * NULL.
190
 */
191
static ossl_inline ossl_unused QUIC_ENGINE *
192
ossl_quic_obj_get0_engine(const QUIC_OBJ *obj)
193
486M
{
194
486M
    assert(obj->init_done);
195
486M
    assert(obj->engine != NULL);
196
486M
    return obj->engine;
197
486M
}
Unexecuted instantiation: ssl_lib.c:ossl_quic_obj_get0_engine
Unexecuted instantiation: t1_lib.c:ossl_quic_obj_get0_engine
quic_impl.c:ossl_quic_obj_get0_engine
Line
Count
Source
193
343M
{
194
343M
    assert(obj->init_done);
195
343M
    assert(obj->engine != NULL);
196
343M
    return obj->engine;
197
343M
}
Unexecuted instantiation: quic_method.c:ossl_quic_obj_get0_engine
quic_obj.c:ossl_quic_obj_get0_engine
Line
Count
Source
193
142M
{
194
142M
    assert(obj->init_done);
195
142M
    assert(obj->engine != NULL);
196
142M
    return obj->engine;
197
142M
}
Unexecuted instantiation: quic_port.c:ossl_quic_obj_get0_engine
Unexecuted instantiation: quic_thread_assist.c:ossl_quic_obj_get0_engine
Unexecuted instantiation: rec_layer_s3.c:ossl_quic_obj_get0_engine
Unexecuted instantiation: quic_rx_depack.c:ossl_quic_obj_get0_engine
198
199
/* Determines the applicable port (if any) and returns a pointer to it. */
200
static ossl_inline ossl_unused QUIC_PORT *
201
ossl_quic_obj_get0_port(const QUIC_OBJ *obj)
202
29.4M
{
203
29.4M
    assert(obj->init_done);
204
29.4M
    return obj->port;
205
29.4M
}
Unexecuted instantiation: ssl_lib.c:ossl_quic_obj_get0_port
Unexecuted instantiation: t1_lib.c:ossl_quic_obj_get0_port
quic_impl.c:ossl_quic_obj_get0_port
Line
Count
Source
202
29.4M
{
203
29.4M
    assert(obj->init_done);
204
29.4M
    return obj->port;
205
29.4M
}
Unexecuted instantiation: quic_method.c:ossl_quic_obj_get0_port
Unexecuted instantiation: quic_obj.c:ossl_quic_obj_get0_port
Unexecuted instantiation: quic_port.c:ossl_quic_obj_get0_port
Unexecuted instantiation: quic_thread_assist.c:ossl_quic_obj_get0_port
Unexecuted instantiation: rec_layer_s3.c:ossl_quic_obj_get0_port
Unexecuted instantiation: quic_rx_depack.c:ossl_quic_obj_get0_port
206
207
/* Returns 1 iff this leader structure represents an event leader. */
208
static ossl_inline ossl_unused int
209
ossl_quic_obj_is_event_leader(const QUIC_OBJ *obj)
210
0
{
211
0
    return obj->is_event_leader;
212
0
}
Unexecuted instantiation: ssl_lib.c:ossl_quic_obj_is_event_leader
Unexecuted instantiation: t1_lib.c:ossl_quic_obj_is_event_leader
Unexecuted instantiation: quic_impl.c:ossl_quic_obj_is_event_leader
Unexecuted instantiation: quic_method.c:ossl_quic_obj_is_event_leader
Unexecuted instantiation: quic_obj.c:ossl_quic_obj_is_event_leader
Unexecuted instantiation: quic_port.c:ossl_quic_obj_is_event_leader
Unexecuted instantiation: quic_thread_assist.c:ossl_quic_obj_is_event_leader
Unexecuted instantiation: rec_layer_s3.c:ossl_quic_obj_is_event_leader
Unexecuted instantiation: quic_rx_depack.c:ossl_quic_obj_is_event_leader
213
214
/*
215
 * Similar to ossl_quic_obj_get0_engine, but only returns a non-NULL value if
216
 * the obj object itself is an event leader, rather than one of its ancestors.
217
 */
218
static ossl_inline ossl_unused QUIC_ENGINE *
219
ossl_quic_obj_get0_engine_local(const QUIC_OBJ *obj)
220
0
{
221
0
    return ossl_quic_obj_is_event_leader(obj)
222
0
        ? ossl_quic_obj_get0_engine(obj)
223
0
        : NULL;
224
0
}
Unexecuted instantiation: ssl_lib.c:ossl_quic_obj_get0_engine_local
Unexecuted instantiation: t1_lib.c:ossl_quic_obj_get0_engine_local
Unexecuted instantiation: quic_impl.c:ossl_quic_obj_get0_engine_local
Unexecuted instantiation: quic_method.c:ossl_quic_obj_get0_engine_local
Unexecuted instantiation: quic_obj.c:ossl_quic_obj_get0_engine_local
Unexecuted instantiation: quic_port.c:ossl_quic_obj_get0_engine_local
Unexecuted instantiation: quic_thread_assist.c:ossl_quic_obj_get0_engine_local
Unexecuted instantiation: rec_layer_s3.c:ossl_quic_obj_get0_engine_local
Unexecuted instantiation: quic_rx_depack.c:ossl_quic_obj_get0_engine_local
225
226
/* Returns 1 iff this leader structure represents a port leader. */
227
static ossl_inline ossl_unused int
228
ossl_quic_obj_is_port_leader(const QUIC_OBJ *obj)
229
0
{
230
0
    return obj->is_port_leader;
231
0
}
Unexecuted instantiation: ssl_lib.c:ossl_quic_obj_is_port_leader
Unexecuted instantiation: t1_lib.c:ossl_quic_obj_is_port_leader
Unexecuted instantiation: quic_impl.c:ossl_quic_obj_is_port_leader
Unexecuted instantiation: quic_method.c:ossl_quic_obj_is_port_leader
Unexecuted instantiation: quic_obj.c:ossl_quic_obj_is_port_leader
Unexecuted instantiation: quic_port.c:ossl_quic_obj_is_port_leader
Unexecuted instantiation: quic_thread_assist.c:ossl_quic_obj_is_port_leader
Unexecuted instantiation: rec_layer_s3.c:ossl_quic_obj_is_port_leader
Unexecuted instantiation: quic_rx_depack.c:ossl_quic_obj_is_port_leader
232
233
/*
234
 * Similar to ossl_quic_obj_get0_port, but only returns a non-NULL value if
235
 * the obj object itself is a port leader, rather than one of its ancestors.
236
 */
237
static ossl_inline ossl_unused QUIC_PORT *
238
ossl_quic_obj_get0_port_local(const QUIC_OBJ *obj)
239
0
{
240
0
    return ossl_quic_obj_is_port_leader(obj)
241
0
        ? ossl_quic_obj_get0_port(obj)
242
0
        : NULL;
243
0
}
Unexecuted instantiation: ssl_lib.c:ossl_quic_obj_get0_port_local
Unexecuted instantiation: t1_lib.c:ossl_quic_obj_get0_port_local
Unexecuted instantiation: quic_impl.c:ossl_quic_obj_get0_port_local
Unexecuted instantiation: quic_method.c:ossl_quic_obj_get0_port_local
Unexecuted instantiation: quic_obj.c:ossl_quic_obj_get0_port_local
Unexecuted instantiation: quic_port.c:ossl_quic_obj_get0_port_local
Unexecuted instantiation: quic_thread_assist.c:ossl_quic_obj_get0_port_local
Unexecuted instantiation: rec_layer_s3.c:ossl_quic_obj_get0_port_local
Unexecuted instantiation: quic_rx_depack.c:ossl_quic_obj_get0_port_local
244
245
/*
246
 * Return 1 if we are currently capable of supporting blocking mode (regardless
247
 * of whether it is actually turned on).
248
 */
249
int ossl_quic_obj_can_support_blocking(const QUIC_OBJ *obj);
250
251
/*
252
 * Returns 1 if we *desire* to do blocking I/O, regardless of whether it will
253
 * actually be used (e.g. because it cannot currently be supported).
254
 */
255
int ossl_quic_obj_desires_blocking(const QUIC_OBJ *obj);
256
257
/*
258
 * Return 1 if an API call directly to the given object should use blocking mode
259
 * and 0 otherwise.
260
 */
261
int ossl_quic_obj_blocking(const QUIC_OBJ *obj);
262
263
/*
264
 * Set the (requested) blocking mode, which might or might not be honoured
265
 * depending on whether the BIO configuration can support it. Argument is a
266
 * QUIC_BLOCKING_MODE value. If the top-level object in a QSO hierarchy is set
267
 * to QUIC_BLOCKING_MODE_INHERIT, defaults to blocking mode.
268
 */
269
void ossl_quic_obj_set_blocking_mode(QUIC_OBJ *obj, unsigned int mode);
270
271
/*
272
 * Convenience Inlines
273
 * ===================
274
 *
275
 * These inlines are expressed in terms of the core functions and inlines above.
276
 */
277
278
/* Get a pointer to the QUIC domain mutex. Always returns non-NULL. */
279
static ossl_inline ossl_unused CRYPTO_MUTEX *
280
ossl_quic_obj_get0_mutex(const QUIC_OBJ *obj)
281
257M
{
282
257M
    return ossl_quic_engine_get0_mutex(ossl_quic_obj_get0_engine(obj));
283
257M
}
Unexecuted instantiation: ssl_lib.c:ossl_quic_obj_get0_mutex
Unexecuted instantiation: t1_lib.c:ossl_quic_obj_get0_mutex
quic_impl.c:ossl_quic_obj_get0_mutex
Line
Count
Source
281
257M
{
282
257M
    return ossl_quic_engine_get0_mutex(ossl_quic_obj_get0_engine(obj));
283
257M
}
Unexecuted instantiation: quic_method.c:ossl_quic_obj_get0_mutex
Unexecuted instantiation: quic_obj.c:ossl_quic_obj_get0_mutex
Unexecuted instantiation: quic_port.c:ossl_quic_obj_get0_mutex
Unexecuted instantiation: quic_thread_assist.c:ossl_quic_obj_get0_mutex
Unexecuted instantiation: rec_layer_s3.c:ossl_quic_obj_get0_mutex
Unexecuted instantiation: quic_rx_depack.c:ossl_quic_obj_get0_mutex
284
285
/*
286
 * Get a reference to the reactor applicable to a leader. Always returns
287
 * non-NULL.
288
 */
289
static ossl_inline ossl_unused QUIC_REACTOR *
290
ossl_quic_obj_get0_reactor(const QUIC_OBJ *obj)
291
157M
{
292
157M
    return ossl_quic_engine_get0_reactor(ossl_quic_obj_get0_engine(obj));
293
157M
}
Unexecuted instantiation: ssl_lib.c:ossl_quic_obj_get0_reactor
Unexecuted instantiation: t1_lib.c:ossl_quic_obj_get0_reactor
quic_impl.c:ossl_quic_obj_get0_reactor
Line
Count
Source
291
86.2M
{
292
86.2M
    return ossl_quic_engine_get0_reactor(ossl_quic_obj_get0_engine(obj));
293
86.2M
}
Unexecuted instantiation: quic_method.c:ossl_quic_obj_get0_reactor
quic_obj.c:ossl_quic_obj_get0_reactor
Line
Count
Source
291
71.3M
{
292
71.3M
    return ossl_quic_engine_get0_reactor(ossl_quic_obj_get0_engine(obj));
293
71.3M
}
Unexecuted instantiation: quic_port.c:ossl_quic_obj_get0_reactor
Unexecuted instantiation: quic_thread_assist.c:ossl_quic_obj_get0_reactor
Unexecuted instantiation: rec_layer_s3.c:ossl_quic_obj_get0_reactor
Unexecuted instantiation: quic_rx_depack.c:ossl_quic_obj_get0_reactor
294
295
/* Get a reference to the OSSL_LIB_CTX pointer applicable to a leader. */
296
static ossl_inline ossl_unused OSSL_LIB_CTX *
297
ossl_quic_obj_get0_libctx(const QUIC_OBJ *obj)
298
0
{
299
0
    return ossl_quic_engine_get0_libctx(ossl_quic_obj_get0_engine(obj));
300
0
}
Unexecuted instantiation: ssl_lib.c:ossl_quic_obj_get0_libctx
Unexecuted instantiation: t1_lib.c:ossl_quic_obj_get0_libctx
Unexecuted instantiation: quic_impl.c:ossl_quic_obj_get0_libctx
Unexecuted instantiation: quic_method.c:ossl_quic_obj_get0_libctx
Unexecuted instantiation: quic_obj.c:ossl_quic_obj_get0_libctx
Unexecuted instantiation: quic_port.c:ossl_quic_obj_get0_libctx
Unexecuted instantiation: quic_thread_assist.c:ossl_quic_obj_get0_libctx
Unexecuted instantiation: rec_layer_s3.c:ossl_quic_obj_get0_libctx
Unexecuted instantiation: quic_rx_depack.c:ossl_quic_obj_get0_libctx
301
302
/* Get a reference to the propq pointer applicable to a leader. */
303
static ossl_inline ossl_unused const char *
304
ossl_quic_obj_get0_propq(const QUIC_OBJ *obj)
305
0
{
306
0
    return ossl_quic_engine_get0_propq(ossl_quic_obj_get0_engine(obj));
307
0
}
Unexecuted instantiation: ssl_lib.c:ossl_quic_obj_get0_propq
Unexecuted instantiation: t1_lib.c:ossl_quic_obj_get0_propq
Unexecuted instantiation: quic_impl.c:ossl_quic_obj_get0_propq
Unexecuted instantiation: quic_method.c:ossl_quic_obj_get0_propq
Unexecuted instantiation: quic_obj.c:ossl_quic_obj_get0_propq
Unexecuted instantiation: quic_port.c:ossl_quic_obj_get0_propq
Unexecuted instantiation: quic_thread_assist.c:ossl_quic_obj_get0_propq
Unexecuted instantiation: rec_layer_s3.c:ossl_quic_obj_get0_propq
Unexecuted instantiation: quic_rx_depack.c:ossl_quic_obj_get0_propq
308
309
/*
310
 * Returns the APL object pointer to the event leader in a hierarchy. Always
311
 * returns non-NULL.
312
 */
313
static ossl_inline ossl_unused SSL *
314
ossl_quic_obj_get0_event_leader(const QUIC_OBJ *obj)
315
0
{
316
0
    assert(obj->init_done);
317
0
    return obj->cached_event_leader != NULL
318
0
        ? &obj->cached_event_leader->ssl
319
0
        : NULL;
320
0
}
Unexecuted instantiation: ssl_lib.c:ossl_quic_obj_get0_event_leader
Unexecuted instantiation: t1_lib.c:ossl_quic_obj_get0_event_leader
Unexecuted instantiation: quic_impl.c:ossl_quic_obj_get0_event_leader
Unexecuted instantiation: quic_method.c:ossl_quic_obj_get0_event_leader
Unexecuted instantiation: quic_obj.c:ossl_quic_obj_get0_event_leader
Unexecuted instantiation: quic_port.c:ossl_quic_obj_get0_event_leader
Unexecuted instantiation: quic_thread_assist.c:ossl_quic_obj_get0_event_leader
Unexecuted instantiation: rec_layer_s3.c:ossl_quic_obj_get0_event_leader
Unexecuted instantiation: quic_rx_depack.c:ossl_quic_obj_get0_event_leader
321
322
/*
323
 * Returns the APL object pointer to the port leader in a hierarchy (if any).
324
 * Always returns non-NULL.
325
 */
326
static ossl_inline ossl_unused SSL *
327
ossl_quic_obj_get0_port_leader(const QUIC_OBJ *obj)
328
0
{
329
0
    assert(obj->init_done);
330
0
    return obj->cached_port_leader != NULL
331
0
        ? &obj->cached_port_leader->ssl
332
0
        : NULL;
333
0
}
Unexecuted instantiation: ssl_lib.c:ossl_quic_obj_get0_port_leader
Unexecuted instantiation: t1_lib.c:ossl_quic_obj_get0_port_leader
Unexecuted instantiation: quic_impl.c:ossl_quic_obj_get0_port_leader
Unexecuted instantiation: quic_method.c:ossl_quic_obj_get0_port_leader
Unexecuted instantiation: quic_obj.c:ossl_quic_obj_get0_port_leader
Unexecuted instantiation: quic_port.c:ossl_quic_obj_get0_port_leader
Unexecuted instantiation: quic_thread_assist.c:ossl_quic_obj_get0_port_leader
Unexecuted instantiation: rec_layer_s3.c:ossl_quic_obj_get0_port_leader
Unexecuted instantiation: quic_rx_depack.c:ossl_quic_obj_get0_port_leader
334
335
/*
336
 * Change the domain flags. Should only be called immediately after
337
 * ossl_quic_obj_init().
338
 */
339
static ossl_inline ossl_unused void
340
ossl_quic_obj_set_domain_flags(QUIC_OBJ *obj, uint64_t domain_flags)
341
0
{
342
0
    obj->domain_flags = domain_flags;
343
0
}
Unexecuted instantiation: ssl_lib.c:ossl_quic_obj_set_domain_flags
Unexecuted instantiation: t1_lib.c:ossl_quic_obj_set_domain_flags
Unexecuted instantiation: quic_impl.c:ossl_quic_obj_set_domain_flags
Unexecuted instantiation: quic_method.c:ossl_quic_obj_set_domain_flags
Unexecuted instantiation: quic_obj.c:ossl_quic_obj_set_domain_flags
Unexecuted instantiation: quic_port.c:ossl_quic_obj_set_domain_flags
Unexecuted instantiation: quic_thread_assist.c:ossl_quic_obj_set_domain_flags
Unexecuted instantiation: rec_layer_s3.c:ossl_quic_obj_set_domain_flags
Unexecuted instantiation: quic_rx_depack.c:ossl_quic_obj_set_domain_flags
344
345
#endif
346
#endif