apiref.rst revision 06b2a236
1API Reference
2=============
3
4.. highlight:: c
5
6Preliminaries
7-------------
8
9All declarations are in :file:`lsquic.h`, so it is enough to
10
11::
12
13    #incluide <lsquic.h>
14
15in each source file.
16
17
18Library Version
19---------------
20
21LSQUIC follows the following versioning model.  The version number
22has the form MAJOR.MINOR.PATCH, where
23
24- MAJOR changes when a large redesign occurs;
25- MINOR changes when an API change or another significant change occurs; and
26- PATCH changes when a bug is fixed or another small, API-compatible change occurs.
27
28QUIC Versions
29-------------
30
31LSQUIC supports two types of QUIC protocol: Google QUIC and IETF QUIC.  The
32former will at some point become obsolete, while the latter is still being
33developed by the IETF.  Both types are included in a single enum:
34
35.. type:: enum lsquic_version
36
37    .. member:: LSQVER_043
38
39        Google QUIC version Q043
40
41    .. member:: LSQVER_046
42
43        Google QUIC version Q046
44
45    .. member:: LSQVER_050
46
47        Google QUIC version Q050
48
49    .. member:: LSQVER_ID27
50
51        IETF QUIC version ID (Internet-Draft) 27; this version is deprecated.
52
53    .. member:: LSQVER_ID28
54
55        IETF QUIC version ID 28; this version is deprecated.
56
57    .. member:: LSQVER_ID29
58
59        IETF QUIC version ID 29
60
61    .. member:: LSQVER_ID32
62
63        IETF QUIC version ID 32
64
65    .. member:: N_LSQVER
66
67        Special value indicating the number of versions in the enum.  It
68        may be used as argument to :func:`lsquic_engine_connect()`.
69
70Several version lists (as bitmasks) are defined in :file:`lsquic.h`:
71
72.. macro:: LSQUIC_SUPPORTED_VERSIONS
73
74List of all supported versions.
75
76.. macro:: LSQUIC_FORCED_TCID0_VERSIONS
77
78List of versions in which the server never includes CID in short packets.
79
80.. macro:: LSQUIC_EXPERIMENTAL_VERSIONS
81
82Experimental versions.
83
84.. macro:: LSQUIC_DEPRECATED_VERSIONS
85
86Deprecated versions.
87
88.. macro:: LSQUIC_GQUIC_HEADER_VERSIONS
89
90Versions that have Google QUIC-like headers.  Only Q043 remains in this
91list.
92
93.. macro:: LSQUIC_IETF_VERSIONS
94
95IETF QUIC versions.
96
97.. macro:: LSQUIC_IETF_DRAFT_VERSIONS
98
99IETF QUIC *draft* versions.  When IETF QUIC v1 is released, it will not
100be included in this list.
101
102LSQUIC Types
103------------
104
105LSQUIC declares several types used by many of its public functions.  They are:
106
107.. type:: lsquic_engine_t
108
109    Instance of LSQUIC engine.
110
111.. type:: lsquic_conn_t
112
113    QUIC connection.
114
115.. type:: lsquic_stream_t
116
117    QUIC stream.
118
119.. type:: lsquic_stream_id_t
120
121    Stream ID.
122
123.. type:: lsquic_conn_ctx_t
124
125    Connection context.  This is the return value of :member:`lsquic_stream_if.on_new_conn`.
126    To LSQUIC, this is just an opaque pointer.  User code is expected to
127    use it for its own purposes.
128
129.. type:: lsquic_stream_ctx_t
130
131    Stream context.  This is the return value of :func:`on_new_stream()`.
132    To LSQUIC, this is just an opaque pointer.  User code is expected to
133    use it for its own purposes.
134
135.. type:: lsquic_http_headers_t
136
137    HTTP headers
138
139Library Initialization
140----------------------
141
142Before using the library, internal structures must be initialized using
143the global initialization function:
144
145::
146
147    if (0 == lsquic_global_init(LSQUIC_GLOBAL_CLIENT|LSQUIC_GLOBAL_SERVER))
148        /* OK, do something useful */
149        ;
150
151This call only needs to be made once.  Afterwards, any number of LSQUIC
152engines may be instantiated.
153
154After a process is done using LSQUIC, it should clean up:
155
156::
157
158    lsquic_global_cleanup();
159
160Logging
161-------
162
163.. type:: struct lsquic_logger_if
164
165    .. member:: int     (*log_buf)(void *logger_ctx, const char *buf, size_t len)
166
167.. function:: void lsquic_logger_init (const struct lsquic_logger_if *logger_if, void *logger_ctx, enum lsquic_logger_timestamp_style)
168
169    Call this if you want to do something with LSQUIC log messages, as they are thrown out by default.
170
171.. function:: int lsquic_set_log_level (const char *log_level)
172
173    Set log level for all LSQUIC modules.
174
175    :param log_level: Acceptable values are debug, info, notice, warning, error, alert, emerg, crit (case-insensitive).
176    :return: 0 on success or -1 on failure (invalid log level).
177
178.. function:: int lsquic_logger_lopt (const char *log_specs)
179
180    Set log level for a particular module or several modules.
181
182    :param log_specs:
183
184        One or more "module=level" specifications serapated by comma.
185        For example, "event=debug,engine=info".  See `List of Log Modules`_
186
187Engine Instantiation and Destruction
188------------------------------------
189
190To use the library, an instance of the ``struct lsquic_engine`` needs to be
191created:
192
193.. function:: lsquic_engine_t *lsquic_engine_new (unsigned flags, const struct lsquic_engine_api *api)
194
195    Create a new engine.
196
197    :param flags: This is is a bitmask of :macro:`LSENG_SERVER` and
198                :macro:`LSENG_HTTP`.
199    :param api: Pointer to an initialized :type:`lsquic_engine_api`.
200
201    The engine can be instantiated either in server mode (when ``LSENG_SERVER``
202    is set) or client mode.  If you need both server and client in your program,
203    create two engines (or as many as you'd like).
204
205    Specifying ``LSENG_HTTP`` flag enables the HTTP functionality: HTTP/2-like
206    for Google QUIC connections and HTTP/3 functionality for IETF QUIC
207    connections.
208
209.. macro:: LSENG_SERVER
210
211    One of possible bitmask values passed as first argument to
212    :type:`lsquic_engine_new`.  When set, the engine instance
213    will be in the server mode.
214
215.. macro:: LSENG_HTTP
216
217    One of possible bitmask values passed as first argument to
218    :type:`lsquic_engine_new`.  When set, the engine instance
219    will enable HTTP functionality.
220
221.. function:: void lsquic_engine_cooldown (lsquic_engine_t *engine)
222
223    This function closes all mini connections and marks all full connections
224    as going away.  In server mode, this also causes the engine to stop
225    creating new connections.
226
227.. function:: void lsquic_engine_destroy (lsquic_engine_t *engine)
228
229    Destroy engine and all its resources.
230
231Engine Callbacks
232----------------
233
234``struct lsquic_engine_api`` contains a few mandatory members and several
235optional members.
236
237.. type:: struct lsquic_engine_api
238
239    .. member:: const struct lsquic_stream_if       *ea_stream_if
240    .. member:: void                                *ea_stream_if_ctx
241
242        ``ea_stream_if`` is mandatory.  This structure contains pointers
243        to callbacks that handle connections and stream events.
244
245    .. member:: lsquic_packets_out_f                 ea_packets_out
246    .. member:: void                                *ea_packets_out_ctx
247
248        ``ea_packets_out`` is used by the engine to send packets.
249
250    .. member:: const struct lsquic_engine_settings *ea_settings
251
252        If ``ea_settings`` is set to NULL, the engine uses default settings
253        (see :func:`lsquic_engine_init_settings()`)
254
255    .. member:: lsquic_lookup_cert_f                 ea_lookup_cert
256    .. member:: void                                *ea_cert_lu_ctx
257
258        Look up certificate.  Mandatory in server mode.
259
260    .. member:: struct ssl_ctx_st *                (*ea_get_ssl_ctx)(void *peer_ctx, const struct sockaddr *local)
261
262        Get SSL_CTX associated with a peer context.  Mandatory in server
263        mode.  This is used for default values for SSL instantiation.
264
265    .. member:: const struct lsquic_hset_if         *ea_hsi_if
266    .. member:: void                                *ea_hsi_ctx
267
268        Optional header set interface.  If not specified, the incoming headers
269        are converted to HTTP/1.x format and are read from stream and have to
270        be parsed again.
271
272    .. member:: const struct lsquic_shared_hash_if  *ea_shi
273    .. member:: void                                *ea_shi_ctx
274
275        Shared hash interface can be used to share state between several
276        processes of a single QUIC server.
277
278    .. member:: const struct lsquic_packout_mem_if  *ea_pmi
279    .. member:: void                                *ea_pmi_ctx
280
281        Optional set of functions to manage memory allocation for outgoing
282        packets.
283
284    .. member:: lsquic_cids_update_f                 ea_new_scids
285    .. member:: lsquic_cids_update_f                 ea_live_scids
286    .. member:: lsquic_cids_update_f                 ea_old_scids
287    .. member:: void                                *ea_cids_update_ctx
288
289        In a multi-process setup, it may be useful to observe the CID
290        lifecycle.  This optional set of callbacks makes it possible.
291
292    .. member:: const char                          *ea_alpn
293
294        The optional ALPN string is used by the client if :macro:`LSENG_HTTP`
295        is not set.
296
297    .. member::                               void (*ea_generate_scid)(lsquic_conn_t *, lsquic_cid_t *, unsigned)
298
299        Optional interface to control the creation of connection IDs.
300
301.. _apiref-engine-settings:
302
303Engine Settings
304---------------
305
306Engine behavior can be controlled by several settings specified in the
307settings structure:
308
309.. type:: struct lsquic_engine_settings
310
311    .. member:: unsigned        es_versions
312
313        This is a bit mask wherein each bit corresponds to a value in
314        :type:`lsquic_version`.  Client starts negotiating with the highest
315        version and goes down.  Server supports either of the versions
316        specified here.  This setting applies to both Google and IETF QUIC.
317
318        The default value is :macro:`LSQUIC_DF_VERSIONS`.
319
320    .. member:: unsigned        es_cfcw
321
322       Initial default connection flow control window.
323
324       In server mode, per-connection values may be set lower than
325       this if resources are scarce.
326
327       Do not set es_cfcw and es_sfcw lower than :macro:`LSQUIC_MIN_FCW`.
328
329    .. member:: unsigned        es_sfcw
330
331       Initial default stream flow control window.
332
333       In server mode, per-connection values may be set lower than
334       this if resources are scarce.
335
336       Do not set es_cfcw and es_sfcw lower than :macro:`LSQUIC_MIN_FCW`.
337
338    .. member:: unsigned        es_max_cfcw
339
340       This value is used to specify maximum allowed value CFCW is allowed
341       to reach due to window auto-tuning.  By default, this value is zero,
342       which means that CFCW is not allowed to increase from its initial
343       value.
344
345       This setting is applicable to both gQUIC and IETF QUIC.
346
347       See :member:`lsquic_engine_settings.es_cfcw`,
348       :member:`lsquic_engine_settings.es_init_max_data`.
349
350    .. member:: unsigned        es_max_sfcw
351
352       This value is used to specify the maximum value stream flow control
353       window is allowed to reach due to auto-tuning.  By default, this
354       value is zero, meaning that auto-tuning is turned off.
355
356       This setting is applicable to both gQUIC and IETF QUIC.
357
358       See :member:`lsquic_engine_settings.es_sfcw`,
359       :member:`lsquic_engine_settings.es_init_max_stream_data_bidi_local`,
360       :member:`lsquic_engine_settings.es_init_max_stream_data_bidi_remote`.
361
362    .. member:: unsigned        es_max_streams_in
363
364        Maximum incoming streams, a.k.a. MIDS.
365
366        Google QUIC only.
367
368    .. member:: unsigned long   es_handshake_to
369
370       Handshake timeout in microseconds.
371
372       For client, this can be set to an arbitrary value (zero turns the
373       timeout off).
374
375       For server, this value is limited to about 16 seconds.  Do not set
376       it to zero.
377
378       Defaults to :macro:`LSQUIC_DF_HANDSHAKE_TO`.
379
380    .. member:: unsigned long   es_idle_conn_to
381
382        Idle connection timeout, a.k.a ICSL, in microseconds; GQUIC only.
383
384        Defaults to :macro:`LSQUIC_DF_IDLE_CONN_TO`
385
386    .. member:: int             es_silent_close
387
388        When true, ``CONNECTION_CLOSE`` is not sent when connection times out.
389        The server will also not send a reply to client's ``CONNECTION_CLOSE``.
390
391        Corresponds to SCLS (silent close) gQUIC option.
392
393    .. member:: unsigned        es_max_header_list_size
394
395       This corresponds to SETTINGS_MAX_HEADER_LIST_SIZE
396       (:rfc:`7540#section-6.5.2`).  0 means no limit.  Defaults
397       to :func:`LSQUIC_DF_MAX_HEADER_LIST_SIZE`.
398
399    .. member:: const char     *es_ua
400
401        UAID -- User-Agent ID.  Defaults to :macro:`LSQUIC_DF_UA`.
402
403        Google QUIC only.
404
405
406       More parameters for server
407
408    .. member:: unsigned        es_max_inchoate
409
410        Maximum number of incoming connections in inchoate state.  (In
411        other words, maximum number of mini connections.)
412
413        This is only applicable in server mode.
414
415        Defaults to :macro:`LSQUIC_DF_MAX_INCHOATE`.
416
417    .. member:: int             es_support_push
418
419       Setting this value to 0 means that
420
421       For client:
422
423       1. we send a SETTINGS frame to indicate that we do not support server
424          push; and
425       2. all incoming pushed streams get reset immediately.
426
427       (For maximum effect, set es_max_streams_in to 0.)
428
429       For server:
430
431       1. :func:`lsquic_conn_push_stream()` will return -1.
432
433    .. member:: int             es_support_tcid0
434
435       If set to true value, the server will not include connection ID in
436       outgoing packets if client's CHLO specifies TCID=0.
437
438       For client, this means including TCID=0 into CHLO message.  Note that
439       in this case, the engine tracks connections by the
440       (source-addr, dest-addr) tuple, thereby making it necessary to create
441       a socket for each connection.
442
443       This option has no effect in Q046 and Q050, as the server never includes
444       CIDs in the short packets.
445
446       This setting is applicable to gQUIC only.
447
448       The default is :func:`LSQUIC_DF_SUPPORT_TCID0`.
449
450    .. member:: int             es_support_nstp
451
452       Q037 and higher support "No STOP_WAITING frame" mode.  When set, the
453       client will send NSTP option in its Client Hello message and will not
454       sent STOP_WAITING frames, while ignoring incoming STOP_WAITING frames,
455       if any.  Note that if the version negotiation happens to downgrade the
456       client below Q037, this mode will *not* be used.
457
458       This option does not affect the server, as it must support NSTP mode
459       if it was specified by the client.
460
461        Defaults to :macro:`LSQUIC_DF_SUPPORT_NSTP`.
462
463    .. member:: int             es_honor_prst
464
465       If set to true value, the library will drop connections when it
466       receives corresponding Public Reset packet.  The default is to
467       ignore these packets.
468
469       The default is :macro:`LSQUIC_DF_HONOR_PRST`.
470
471    .. member:: int             es_send_prst
472
473       If set to true value, the library will send Public Reset packets
474       in response to incoming packets with unknown Connection IDs.
475
476       The default is :macro:`LSQUIC_DF_SEND_PRST`.
477
478    .. member:: unsigned        es_progress_check
479
480       A non-zero value enables internal checks that identify suspected
481       infinite loops in user `on_read` and `on_write` callbacks
482       and break them.  An infinite loop may occur if user code keeps
483       on performing the same operation without checking status, e.g.
484       reading from a closed stream etc.
485
486       The value of this parameter is as follows: should a callback return
487       this number of times in a row without making progress (that is,
488       reading, writing, or changing stream state), loop break will occur.
489
490       The defaut value is :macro:`LSQUIC_DF_PROGRESS_CHECK`.
491
492    .. member:: int             es_rw_once
493
494       A non-zero value make stream dispatch its read-write events once
495       per call.
496
497       When zero, read and write events are dispatched until the stream
498       is no longer readable or writeable, respectively, or until the
499       user signals unwillingness to read or write using
500       :func:`lsquic_stream_wantread()` or :func:`lsquic_stream_wantwrite()`
501       or shuts down the stream.
502
503       The default value is :macro:`LSQUIC_DF_RW_ONCE`.
504
505    .. member:: unsigned        es_proc_time_thresh
506
507       If set, this value specifies the number of microseconds that
508       :func:`lsquic_engine_process_conns()` and
509       :func:`lsquic_engine_send_unsent_packets()` are allowed to spend
510       before returning.
511
512       This is not an exact science and the connections must make
513       progress, so the deadline is checked after all connections get
514       a chance to tick (in the case of :func:`lsquic_engine_process_conns())`
515       and at least one batch of packets is sent out.
516
517       When processing function runs out of its time slice, immediate
518       calls to :func:`lsquic_engine_has_unsent_packets()` return false.
519
520       The default value is :func:`LSQUIC_DF_PROC_TIME_THRESH`.
521
522    .. member:: int             es_pace_packets
523
524       If set to true, packet pacing is implemented per connection.
525
526       The default value is :func:`LSQUIC_DF_PACE_PACKETS`.
527
528    .. member:: unsigned        es_clock_granularity
529
530       Clock granularity information is used by the pacer.  The value
531       is in microseconds; default is :func:`LSQUIC_DF_CLOCK_GRANULARITY`.
532
533    .. member:: unsigned        es_init_max_data
534
535       Initial max data.
536
537       This is a transport parameter.
538
539       Depending on the engine mode, the default value is either
540       :macro:`LSQUIC_DF_INIT_MAX_DATA_CLIENT` or
541       :macro:`LSQUIC_DF_INIT_MAX_DATA_SERVER`.
542
543       IETF QUIC only.
544
545    .. member:: unsigned        es_init_max_stream_data_bidi_remote
546
547       Initial max stream data.
548
549       This is a transport parameter.
550
551       Depending on the engine mode, the default value is either
552       :macro:`LSQUIC_DF_INIT_MAX_STREAM_DATA_BIDI_REMOTE_CLIENT` or
553       :macro:`LSQUIC_DF_INIT_MAX_STREAM_DATA_BIDI_REMOTE_SERVER`.
554
555       IETF QUIC only.
556
557    .. member:: unsigned        es_init_max_stream_data_bidi_local
558
559       Initial max stream data.
560
561       This is a transport parameter.
562
563       Depending on the engine mode, the default value is either
564       :macro:`LSQUIC_DF_INIT_MAX_STREAM_DATA_BIDI_LOCAL_CLIENT` or
565       :macro:`LSQUIC_DF_INIT_MAX_STREAM_DATA_BIDI_LOCAL_SERVER`.
566
567       IETF QUIC only.
568
569    .. member:: unsigned        es_init_max_stream_data_uni
570
571       Initial max stream data for unidirectional streams initiated
572       by remote endpoint.
573
574       This is a transport parameter.
575
576       Depending on the engine mode, the default value is either
577       :macro:`LSQUIC_DF_INIT_MAX_STREAM_DATA_UNI_CLIENT` or
578       :macro:`LSQUIC_DF_INIT_MAX_STREAM_DATA_UNI_SERVER`.
579
580       IETF QUIC only.
581
582    .. member:: unsigned        es_init_max_streams_bidi
583
584       Maximum initial number of bidirectional stream.
585
586       This is a transport parameter.
587
588       Default value is :macro:`LSQUIC_DF_INIT_MAX_STREAMS_BIDI`.
589
590       IETF QUIC only.
591
592    .. member:: unsigned        es_init_max_streams_uni
593
594       Maximum initial number of unidirectional stream.
595
596       This is a transport parameter.
597
598       Default value is :macro:`LSQUIC_DF_INIT_MAX_STREAMS_UNI_CLIENT` or
599       :macro:`LSQUIC_DF_INIT_MAX_STREAM_DATA_UNI_SERVER`.
600
601       IETF QUIC only.
602
603    .. member:: unsigned        es_idle_timeout
604
605       Idle connection timeout.
606
607       This is a transport parameter.
608
609       (Note: `es_idle_conn_to` is not reused because it is in microseconds,
610       which, I now realize, was not a good choice.  Since it will be
611       obsoleted some time after the switchover to IETF QUIC, we do not
612       have to keep on using strange units.)
613
614       Default value is :macro:`LSQUIC_DF_IDLE_TIMEOUT`.
615
616       Maximum value is 600 seconds.
617
618       IETF QUIC only.
619
620    .. member:: unsigned        es_ping_period
621
622       Ping period.  If set to non-zero value, the connection will generate and
623       send PING frames in the absence of other activity.
624
625       By default, the server does not send PINGs and the period is set to zero.
626       The client's defaut value is :macro:`LSQUIC_DF_PING_PERIOD`.
627
628       IETF QUIC only.
629
630    .. member:: unsigned        es_scid_len
631
632       Source Connection ID length.  Valid values are 0 through 20, inclusive.
633
634       Default value is :macro:`LSQUIC_DF_SCID_LEN`.
635
636       IETF QUIC only.
637
638    .. member:: unsigned        es_scid_iss_rate
639
640       Source Connection ID issuance rate.  This field is measured in CIDs
641       per minute.  Using value 0 indicates that there is no rate limit for
642       CID issuance.
643
644       Default value is :macro:`LSQUIC_DF_SCID_ISS_RATE`.
645
646       IETF QUIC only.
647
648    .. member:: unsigned        es_qpack_dec_max_size
649
650       Maximum size of the QPACK dynamic table that the QPACK decoder will
651       use.
652
653       The default is :macro:`LSQUIC_DF_QPACK_DEC_MAX_SIZE`.
654
655       IETF QUIC only.
656
657    .. member:: unsigned        es_qpack_dec_max_blocked
658
659       Maximum number of blocked streams that the QPACK decoder is willing
660       to tolerate.
661
662       The default is :macro:`LSQUIC_DF_QPACK_DEC_MAX_BLOCKED`.
663
664       IETF QUIC only.
665
666    .. member:: unsigned        es_qpack_enc_max_size
667
668       Maximum size of the dynamic table that the encoder is willing to use.
669       The actual size of the dynamic table will not exceed the minimum of
670       this value and the value advertized by peer.
671
672       The default is :macro:`LSQUIC_DF_QPACK_ENC_MAX_SIZE`.
673
674       IETF QUIC only.
675
676    .. member:: unsigned        es_qpack_enc_max_blocked
677
678       Maximum number of blocked streams that the QPACK encoder is willing
679       to risk.  The actual number of blocked streams will not exceed the
680       minimum of this value and the value advertized by peer.
681
682       The default is :macro:`LSQUIC_DF_QPACK_ENC_MAX_BLOCKED`.
683
684       IETF QUIC only.
685
686    .. member:: int             es_ecn
687
688       Enable ECN support.
689
690       The default is :macro:`LSQUIC_DF_ECN`
691
692       IETF QUIC only.
693
694    .. member:: int             es_allow_migration
695
696       Allow peer to migrate connection.
697
698       The default is :macro:`LSQUIC_DF_ALLOW_MIGRATION`
699
700       IETF QUIC only.
701
702    .. member:: unsigned        es_cc_algo
703
704       Congestion control algorithm to use.
705
706       - 0:  Use default (:macro:`LSQUIC_DF_CC_ALGO`)
707       - 1:  Cubic
708       - 2:  BBRv1
709       - 3:  Adaptive congestion control.
710
711       Adaptive congestion control adapts to the environment.  It figures
712       out whether to use Cubic or BBRv1 based on the RTT.
713
714    .. member:: unsigned        es_cc_rtt_thresh
715
716       Congestion controller RTT threshold in microseconds.
717
718       Adaptive congestion control uses BBRv1 until RTT is determined.  At
719       that point a permanent choice of congestion controller is made.  If
720       RTT is smaller than or equal to
721       :member:`lsquic_engine_settings.es_cc_rtt_thresh`, congestion
722       controller is switched to Cubic; otherwise, BBRv1 is picked.
723
724       The default value is :macro:`LSQUIC_DF_CC_RTT_THRESH`
725
726    .. member:: int             es_ql_bits
727
728       Use QL loss bits.  Allowed values are:
729
730       - 0:  Do not use loss bits
731       - 1:  Allow loss bits
732       - 2:  Allow and send loss bits
733
734       Default value is :macro:`LSQUIC_DF_QL_BITS`
735
736    .. member:: int             es_spin
737
738       Enable spin bit.  Allowed values are 0 and 1.
739
740       Default value is :macro:`LSQUIC_DF_SPIN`
741
742    .. member:: int             es_delayed_acks
743
744       Enable delayed ACKs extension.  Allowed values are 0 and 1.
745
746       Default value is :macro:`LSQUIC_DF_DELAYED_ACKS`
747
748    .. member:: int             es_timestamps
749
750       Enable timestamps extension.  Allowed values are 0 and 1.
751
752       Default value is @ref LSQUIC_DF_TIMESTAMPS
753
754    .. member:: unsigned short  es_max_udp_payload_size_rx
755
756       Maximum packet size we are willing to receive.  This is sent to
757       peer in transport parameters: the library does not enforce this
758       limit for incoming packets.
759
760       If set to zero, limit is not set.
761
762       Default value is :macro:`LSQUIC_DF_MAX_UDP_PAYLOAD_SIZE_RX`
763
764    .. member:: int es_dplpmtud
765
766       If set to true value, enable DPLPMTUD -- Datagram Packetization
767       Layer Path MTU Discovery.
768
769       Default value is :macro:`LSQUIC_DF_DPLPMTUD`
770
771    .. member:: unsigned short  es_base_plpmtu
772
773        PLPMTU size expected to work for most paths.
774
775        If set to zero, this value is calculated based on QUIC and IP versions.
776
777        Default value is :macro:`LSQUIC_DF_BASE_PLPMTU`
778
779    .. member:: unsigned short  es_max_plpmtu
780
781        Largest PLPMTU size the engine will try.
782
783        If set to zero, picking this value is left to the engine.
784
785        Default value is :macro:`LSQUIC_DF_MAX_PLPMTU`
786
787    .. member:: unsigned        es_mtu_probe_timer
788
789        This value specifies how long the DPLPMTUD probe timer is, in
790        milliseconds.  :rfc:`8899` says:
791
792            PROBE_TIMER:  The PROBE_TIMER is configured to expire after a period
793            longer than the maximum time to receive an acknowledgment to a
794            probe packet.  This value MUST NOT be smaller than 1 second, and
795            SHOULD be larger than 15 seconds.  Guidance on selection of the
796            timer value are provided in section 3.1.1 of the UDP Usage
797            Guidelines :rfc:`8085#section-3.1`.
798
799        If set to zero, the default is used.
800
801        Default value is :macro:`LSQUIC_DF_MTU_PROBE_TIMER`
802
803    .. member:: unsigned        es_noprogress_timeout
804
805       No progress timeout.
806
807       If connection does not make progress for this number of seconds, the
808       connection is dropped.  Here, progress is defined as user streams
809       being written to or read from.
810
811       If this value is zero, this timeout is disabled.
812
813       Default value is :macro:`LSQUIC_DF_NOPROGRESS_TIMEOUT_SERVER` in server
814       mode and :macro:`LSQUIC_DF_NOPROGRESS_TIMEOUT_CLIENT` in client mode.
815
816    .. member:: int             es_grease_quic_bit
817
818       Enable the "QUIC bit grease" extension.  When set to a true value,
819       lsquic will grease the QUIC bit on the outgoing QUIC packets if
820       the peer sent the "grease_quic_bit" transport parameter.
821
822       Default value is :macro:`LSQUIC_DF_GREASE_QUIC_BIT`
823
824    .. member:: int             es_datagrams
825
826       Enable datagrams extension.  Allowed values are 0 and 1.
827
828       Default value is :macro:`LSQUIC_DF_DATAGRAMS`
829
830    .. member:: int             es_optimistic_nat
831
832       If set to true, changes in peer port are assumed to be due to a
833       benign NAT rebinding and path characteristics -- MTU, RTT, and
834       CC state -- are not reset.
835
836       Default value is :macro:`LSQUIC_DF_OPTIMISTIC_NAT`
837
838    .. member:: int             es_ext_http_prio
839
840       If set to true, Extensible HTTP Priorities are enabled.  This
841       is HTTP/3-only setting.
842
843       Default value is :macro:`LSQUIC_DF_EXT_HTTP_PRIO`
844
845    .. member:: int             es_qpack_experiment
846
847       If set to 1, QPACK statistics are logged per connection.
848
849       If set to 2, QPACK experiments are run.  In this mode, encoder
850       and decoder setting values are randomly selected (from the range
851       [0, whatever is specified in es_qpack_(enc|dec)_*]) and these
852       values along with compression ratio and user agent are logged at
853       NOTICE level when connection is destroyed.  The purpose of these
854       experiments is to use compression performance statistics to figure
855       out a good set of default values.
856
857       Default value is :macro:`LSQUIC_DF_QPACK_EXPERIMENT`
858
859    .. member:: int             es_delay_onclose
860
861       When set to true, :member:`lsquic_stream_if.on_close` will be delayed until the
862       peer acknowledges all data sent on the stream.  (Or until the connection
863       is destroyed in some manner -- either explicitly closed by the user or
864       as a result of an engine shutdown.)  To find out whether all data written
865       to peer has been acknowledged, use `lsquic_stream_has_unacked_data()`.
866
867       Default value is :macro:`LSQUIC_DF_DELAY_ONCLOSE`
868
869    .. member:: int             es_max_batch_size
870
871       If set to a non-zero value, specifies maximum batch size.  (The
872       batch of packets passed to :member:`lsquic_engine_api.ea_packets_out`).
873       Must be no larger than 1024.
874
875       Default value is :macro:`LSQUIC_DF_MAX_BATCH_SIZE`
876
877To initialize the settings structure to library defaults, use the following
878convenience function:
879
880.. function:: lsquic_engine_init_settings (struct lsquic_engine_settings *, unsigned flags)
881
882    ``flags`` is a bitmask of ``LSENG_SERVER`` and ``LSENG_HTTP``
883
884After doing this, change just the settings you'd like.  To check whether
885the values are correct, another convenience function is provided:
886
887.. function:: lsquic_engine_check_settings (const struct lsquic_engine_settings *, unsigned flags, char *err_buf, size_t err_buf_sz)
888
889    Check settings for errors.  Return 0 if settings are OK, -1 otherwise.
890
891    If `err_buf` and `err_buf_sz` are set, an error string is written to the
892    buffers.
893
894The following macros in :file:`lsquic.h` specify default values:
895
896*Note that, despite our best efforts, documentation may accidentally get
897out of date.  Please check your :file:`lsquic.h` for actual values.*
898
899.. macro::      LSQUIC_MIN_FCW
900
901    Minimum flow control window is set to 16 KB for both client and server.
902    This means we can send up to this amount of data before handshake gets
903    completed.
904
905.. macro:: LSQUIC_DF_VERSIONS
906
907    By default, deprecated and experimental versions are not included.
908
909.. macro:: LSQUIC_DF_CFCW_SERVER
910.. macro:: LSQUIC_DF_CFCW_CLIENT
911.. macro:: LSQUIC_DF_SFCW_SERVER
912.. macro:: LSQUIC_DF_SFCW_CLIENT
913.. macro:: LSQUIC_DF_MAX_STREAMS_IN
914
915.. macro:: LSQUIC_DF_INIT_MAX_DATA_SERVER
916.. macro:: LSQUIC_DF_INIT_MAX_DATA_CLIENT
917.. macro:: LSQUIC_DF_INIT_MAX_STREAM_DATA_BIDI_REMOTE_SERVER
918.. macro:: LSQUIC_DF_INIT_MAX_STREAM_DATA_BIDI_LOCAL_SERVER
919.. macro:: LSQUIC_DF_INIT_MAX_STREAM_DATA_BIDI_REMOTE_CLIENT
920.. macro:: LSQUIC_DF_INIT_MAX_STREAM_DATA_BIDI_LOCAL_CLIENT
921.. macro:: LSQUIC_DF_INIT_MAX_STREAMS_BIDI
922.. macro:: LSQUIC_DF_INIT_MAX_STREAMS_UNI_CLIENT
923.. macro:: LSQUIC_DF_INIT_MAX_STREAMS_UNI_SERVER
924.. macro:: LSQUIC_DF_INIT_MAX_STREAM_DATA_UNI_CLIENT
925.. macro:: LSQUIC_DF_INIT_MAX_STREAM_DATA_UNI_SERVER
926
927.. macro:: LSQUIC_DF_IDLE_TIMEOUT
928
929    Default idle connection timeout is 30 seconds.
930
931.. macro:: LSQUIC_DF_PING_PERIOD
932
933    Default ping period is 15 seconds.
934
935.. macro:: LSQUIC_DF_HANDSHAKE_TO
936
937    Default handshake timeout is 10,000,000 microseconds (10 seconds).
938
939.. macro:: LSQUIC_DF_IDLE_CONN_TO
940
941    Default idle connection timeout is 30,000,000 microseconds.
942
943.. macro:: LSQUIC_DF_SILENT_CLOSE
944
945    By default, connections are closed silenty when they time out (no
946    ``CONNECTION_CLOSE`` frame is sent) and the server does not reply with
947    own ``CONNECTION_CLOSE`` after it receives one.
948
949.. macro:: LSQUIC_DF_MAX_HEADER_LIST_SIZE
950
951    Default value of maximum header list size.  If set to non-zero value,
952    SETTINGS_MAX_HEADER_LIST_SIZE will be sent to peer after handshake is
953    completed (assuming the peer supports this setting frame type).
954
955.. macro:: LSQUIC_DF_UA
956
957    Default value of UAID (user-agent ID).
958
959.. macro:: LSQUIC_DF_MAX_INCHOATE
960
961    Default is 1,000,000.
962
963.. macro:: LSQUIC_DF_SUPPORT_NSTP
964
965    NSTP is not used by default.
966
967.. macro:: LSQUIC_DF_SUPPORT_PUSH
968
969    Push promises are supported by default.
970
971.. macro:: LSQUIC_DF_SUPPORT_TCID0
972
973    Support for TCID=0 is enabled by default.
974
975.. macro:: LSQUIC_DF_HONOR_PRST
976
977    By default, LSQUIC ignores Public Reset packets.
978
979.. macro:: LSQUIC_DF_SEND_PRST
980
981    By default, LSQUIC will not send Public Reset packets in response to
982    packets that specify unknown connections.
983
984.. macro:: LSQUIC_DF_PROGRESS_CHECK
985
986    By default, infinite loop checks are turned on.
987
988.. macro:: LSQUIC_DF_RW_ONCE
989
990    By default, read/write events are dispatched in a loop.
991
992.. macro:: LSQUIC_DF_PROC_TIME_THRESH
993
994    By default, the threshold is not enabled.
995
996.. macro:: LSQUIC_DF_PACE_PACKETS
997
998    By default, packets are paced
999
1000.. macro:: LSQUIC_DF_CLOCK_GRANULARITY
1001
1002    Default clock granularity is 1000 microseconds.
1003
1004.. macro:: LSQUIC_DF_SCID_LEN
1005
1006    The default value is 8 for simplicity and speed.
1007
1008.. macro:: LSQUIC_DF_SCID_ISS_RATE
1009
1010    The default value is 60 CIDs per minute.
1011
1012.. macro:: LSQUIC_DF_QPACK_DEC_MAX_BLOCKED
1013
1014    Default value is 100.
1015
1016.. macro:: LSQUIC_DF_QPACK_DEC_MAX_SIZE
1017
1018    Default value is 4,096 bytes.
1019
1020.. macro:: LSQUIC_DF_QPACK_ENC_MAX_BLOCKED
1021
1022    Default value is 100.
1023
1024.. macro:: LSQUIC_DF_QPACK_ENC_MAX_SIZE
1025
1026    Default value is 4,096 bytes.
1027
1028.. macro:: LSQUIC_DF_ECN
1029
1030    ECN is disabled by default.
1031
1032.. macro:: LSQUIC_DF_ALLOW_MIGRATION
1033
1034    Allow migration by default.
1035
1036.. macro:: LSQUIC_DF_QL_BITS
1037
1038    Use QL loss bits by default.
1039
1040.. macro:: LSQUIC_DF_SPIN
1041
1042    Turn spin bit on by default.
1043
1044.. macro:: LSQUIC_DF_CC_ALGO
1045
1046    Use Adaptive Congestion Controller by default.
1047
1048.. macro:: LSQUIC_DF_CC_RTT_THRESH
1049
1050    Default value of the CC RTT threshold is 1500 microseconds
1051
1052.. macro:: LSQUIC_DF_DELAYED_ACKS
1053
1054    The Delayed ACKs extension is on by default.
1055
1056.. macro:: LSQUIC_DF_MAX_UDP_PAYLOAD_SIZE_RX
1057
1058    By default, incoming packet size is not limited.
1059
1060.. macro:: LSQUIC_DF_DPLPMTUD
1061
1062    By default, DPLPMTUD is enabled
1063
1064.. macro:: LSQUIC_DF_BASE_PLPMTU
1065
1066    By default, this value is left up to the engine.
1067
1068.. macro:: LSQUIC_DF_MAX_PLPMTU
1069
1070    By default, this value is left up to the engine.
1071
1072.. macro:: LSQUIC_DF_MTU_PROBE_TIMER
1073
1074    By default, we use the minimum timer of 1000 milliseconds.
1075
1076.. macro:: LSQUIC_DF_NOPROGRESS_TIMEOUT_SERVER
1077
1078    By default, drop no-progress connections after 60 seconds on the server.
1079
1080.. macro:: LSQUIC_DF_NOPROGRESS_TIMEOUT_CLIENT
1081
1082    By default, do not use no-progress timeout on the client.
1083
1084.. macro:: LSQUIC_DF_GREASE_QUIC_BIT
1085
1086    By default, greasing the QUIC bit is enabled (if peer sent
1087    the "grease_quic_bit" transport parameter).
1088
1089.. macro:: LSQUIC_DF_TIMESTAMPS
1090
1091    Timestamps are on by default.
1092
1093.. macro:: LSQUIC_DF_DATAGRAMS
1094
1095    Datagrams are off by default.
1096
1097.. macro:: LSQUIC_DF_OPTIMISTIC_NAT
1098
1099    Assume optimistic NAT by default.
1100
1101.. macro:: LSQUIC_DF_EXT_HTTP_PRIO
1102
1103    Turn on Extensible HTTP Priorities by default.
1104
1105.. macro:: LSQUIC_DF_QPACK_EXPERIMENT
1106
1107    By default, QPACK experiments are turned off.
1108
1109.. macro:: LSQUIC_DF_DELAY_ONCLOSE
1110
1111    By default, calling :member:`lsquic_stream_if.on_close()` is not delayed.
1112
1113.. macro:: LSQUIC_DF_MAX_BATCH_SIZE
1114
1115    By default, maximum batch size is not specified, leaving it up to the
1116    library.
1117
1118Receiving Packets
1119-----------------
1120
1121Incoming packets are supplied to the engine using :func:`lsquic_engine_packet_in()`.
1122It is up to the engine to decide what do to with the packet.  It can find an existing
1123connection and dispatch the packet there, create a new connection (in server mode), or
1124schedule a version negotiation or stateless reset packet.
1125
1126.. function:: int lsquic_engine_packet_in (lsquic_engine_t *engine, const unsigned char *data, size_t size, const struct sockaddr *local, const struct sockaddr *peer, void *peer_ctx, int ecn)
1127
1128    Pass incoming packet to the QUIC engine.  This function can be called
1129    more than once in a row.  After you add one or more packets, call
1130    :func:`lsquic_engine_process_conns()` to schedule outgoing packets, if any.
1131
1132    :param engine: Engine instance.
1133    :param data: Pointer to UDP datagram payload.
1134    :param size: Size of UDP datagram.
1135    :param local: Local address.
1136    :param peer: Peer address.
1137    :param peer_ctx: Peer context.
1138    :param ecn: ECN marking associated with this UDP datagram.
1139
1140    :return:
1141
1142        - ``0``: Packet was processed by a real connection.
1143        - ``1``: Packet was handled successfully, but not by a connection.
1144          This may happen with version negotiation and public reset
1145          packets as well as some packets that may be ignored.
1146        - ``-1``: Some error occurred.  Possible reasons are invalid packet
1147          size or failure to allocate memory.
1148
1149.. function:: int lsquic_engine_earliest_adv_tick (lsquic_engine_t *engine, int *diff)
1150
1151    Returns true if there are connections to be processed, false otherwise.
1152
1153    :param engine:
1154
1155        Engine instance.
1156
1157    :param diff:
1158
1159        If the function returns a true value, the pointed to integer is set to the
1160        difference between the earliest advisory tick time and now.
1161        If the former is in the past, this difference is negative.
1162
1163    :return:
1164
1165        True if there are connections to be processed, false otherwise.
1166
1167Sending Packets
1168---------------
1169
1170User specifies a callback :type:`lsquic_packets_out_f` in :type:`lsquic_engine_api`
1171that the library uses to send packets.
1172
1173.. type:: struct lsquic_out_spec
1174
1175    This structure describes an outgoing packet.
1176
1177    .. member:: struct iovec          *iov
1178
1179        A vector with payload.
1180
1181    .. member:: size_t                 iovlen
1182
1183        Vector length.
1184
1185    .. member:: const struct sockaddr *local_sa
1186
1187        Local address.
1188
1189    .. member:: const struct sockaddr *dest_sa
1190
1191        Destination address.
1192
1193    .. member:: void                  *peer_ctx
1194
1195        Peer context associated with the local address.
1196
1197    .. member:: int                    ecn
1198
1199        ECN: Valid values are 0 - 3. See :rfc:`3168`.
1200
1201        ECN may be set by IETF QUIC connections if ``es_ecn`` is set.
1202
1203.. type:: typedef int (*lsquic_packets_out_f)(void *packets_out_ctx, const struct lsquic_out_spec  *out_spec, unsigned n_packets_out)
1204
1205    Returns number of packets successfully sent out or -1 on error.  -1 should
1206    only be returned if no packets were sent out.  If -1 is returned or if the
1207    return value is smaller than ``n_packets_out``, this indicates that sending
1208    of packets is not possible.
1209
1210    If not all packets could be sent out, then:
1211
1212        - errno is examined.  If it is not EAGAIN or EWOULDBLOCK, the connection
1213          whose packet caused the error is closed forthwith.
1214        - No packets are attempted to be sent out until :func:`lsquic_engine_send_unsent_packets()`
1215          is called.
1216
1217.. function:: void lsquic_engine_process_conns (lsquic_engine_t *engine)
1218
1219    Process tickable connections.  This function must be called often enough so
1220    that packets and connections do not expire.  The preferred method of doing
1221    so is by using :func:`lsquic_engine_earliest_adv_tick()`.
1222
1223.. function:: int lsquic_engine_has_unsent_packets (lsquic_engine_t *engine)
1224
1225    Returns true if engine has some unsent packets.  This happens if
1226    :member:`lsquic_engine_api.ea_packets_out` could not send everything out
1227    or if processing deadline was exceeded (see
1228    :member:`lsquic_engine_settings.es_proc_time_thresh`).
1229
1230.. function:: void lsquic_engine_send_unsent_packets (lsquic_engine_t *engine)
1231
1232    Send out as many unsent packets as possibe: until we are out of unsent
1233    packets or until ``ea_packets_out()`` fails.
1234
1235    If ``ea_packets_out()`` cannot send all packets, this function must be
1236    called to signify that sending of packets is possible again.
1237
1238Stream Callback Interface
1239-------------------------
1240
1241The stream callback interface structure lists the callbacks used by
1242the engine to communicate with the user code:
1243
1244.. type:: struct lsquic_stream_if
1245
1246    .. member:: lsquic_conn_ctx_t *(*on_new_conn)(void *stream_if_ctx, lsquic_conn_t *)
1247
1248        Called when a new connection has been created.  In server mode,
1249        this means that the handshake has been successful.  In client mode,
1250        on the other hand, this callback is called as soon as connection
1251        object is created inside the engine, but before the handshake is
1252        done.
1253
1254        The return value is the connection context associated with this
1255        connection.  Use :func:`lsquic_conn_get_ctx()` to get back this
1256        context.  It is OK for this function to return NULL.
1257
1258        This callback is mandatory.
1259
1260    .. member:: void (*on_conn_closed)(lsquic_conn_t *)
1261
1262        Connection is closed.
1263
1264        This callback is mandatory.
1265
1266    .. member:: lsquic_stream_ctx_t * (*on_new_stream)(void *stream_if_ctx, lsquic_stream_t *)
1267
1268        If you need to initiate a connection, call lsquic_conn_make_stream().
1269        This will cause `on_new_stream` callback to be called when appropriate
1270        (this operation is delayed when maximum number of outgoing streams is
1271        reached).
1272
1273        If connection is going away, this callback may be called with the
1274        second parameter set to NULL.
1275
1276        The return value is the stream context associated with the stream.
1277        A pointer to it is passed to `on_read()`, `on_write()`, and `on_close()`
1278        callbacks.  It is OK for this function to return NULL.
1279
1280        This callback is mandatory.
1281
1282    .. member:: void (*on_read)     (lsquic_stream_t *s, lsquic_stream_ctx_t *h)
1283
1284        Stream is readable: either there are bytes to be read or an error
1285        is ready to be collected.
1286
1287        This callback is mandatory.
1288
1289    .. member:: void (*on_write)    (lsquic_stream_t *s, lsquic_stream_ctx_t *h)
1290
1291        Stream is writeable.
1292
1293        This callback is mandatory.
1294
1295    .. member:: void (*on_close)    (lsquic_stream_t *s, lsquic_stream_ctx_t *h)
1296
1297        After this callback returns, the stream is no longer accessible.  This is
1298        a good time to clean up the stream context.
1299
1300        This callback is mandatory.
1301
1302    .. member:: void (*on_reset)    (lsquic_stream_t *s, lsquic_stream_ctx_t *h, int how)
1303
1304        This callback is called as soon as the peer resets a stream.
1305        The argument `how` is either 0, 1, or 2, meaning "read", "write", and
1306        "read and write", respectively (just like in ``shutdown(2)``).  This
1307        signals the user to stop reading, writing, or both.
1308
1309        Note that resets differ in gQUIC and IETF QUIC.  In gQUIC, `how` is
1310        always 2; in IETF QUIC, `how` is either 0 or 1 because one can reset
1311        just one direction in IETF QUIC.
1312
1313        This callback is optional.  The reset error can still be collected
1314        during next "on read" or "on write" event.
1315
1316    .. member:: void (*on_hsk_done)(lsquic_conn_t *c, enum lsquic_hsk_status s)
1317
1318        When handshake is completed, this callback is called.
1319
1320        This callback is optional.
1321
1322    .. member:: void (*on_goaway_received)(lsquic_conn_t *)
1323
1324        This is called when our side received GOAWAY frame.  After this,
1325        new streams should not be created.
1326
1327        This callback is optional.
1328
1329    .. member:: void (*on_new_token)(lsquic_conn_t *c, const unsigned char *token, size_t token_size)
1330
1331        When client receives a token in NEW_TOKEN frame, this callback is called.
1332
1333        This callback is optional.
1334
1335    .. member:: void (*on_sess_resume_info)(lsquic_conn_t *c, const unsigned char *, size_t)
1336
1337        This callback lets client record information needed to
1338        perform session resumption next time around.
1339
1340        This callback is optional.
1341
1342    .. member:: ssize_t (*on_dg_write)(lsquic_conn_t *c, void *buf, size_t buf_sz)
1343
1344        Called when datagram is ready to be written.  Write at most
1345        ``buf_sz`` bytes to ``buf`` and  return number of bytes
1346        written.
1347
1348    .. member:: void (*on_datagram)(lsquic_conn_t *c, const void *buf, size_t sz)
1349
1350        Called when datagram is read from a packet.  This callback is
1351        required when :member:`lsquic_engine_settings.es_datagrams` is true.
1352        Take care to process it quickly, as this is called during
1353        :func:`lsquic_engine_packet_in()`.
1354
1355Creating Connections
1356--------------------
1357
1358In server mode, the connections are created by the library based on incoming
1359packets.  After handshake is completed, the library calls :member:`lsquic_stream_if.on_new_conn`
1360callback.
1361
1362In client mode, a new connection is created by
1363
1364.. function:: lsquic_conn_t * lsquic_engine_connect (lsquic_engine_t *engine, enum lsquic_version version, const struct sockaddr *local_sa, const struct sockaddr *peer_sa, void *peer_ctx, lsquic_conn_ctx_t *conn_ctx, const char *sni, unsigned short base_plpmtu, const unsigned char *sess_resume, size_t sess_resume_len, const unsigned char *token, size_t token_sz)
1365
1366    :param engine: Engine to use.
1367
1368    :param version:
1369
1370        To let the engine specify QUIC version, use N_LSQVER.  If session resumption
1371        information is supplied, version is picked from there instead.
1372
1373    :param local_sa:
1374
1375        Local address.
1376
1377    :param peer_sa:
1378
1379        Address of the server.
1380
1381    :param peer_ctx:
1382
1383        Context associated with the peer.  This is what gets passed to TODO.
1384
1385    :param conn_ctx:
1386
1387        Connection context can be set early using this parameter.  Useful if
1388        you need the connection context to be available in `on_conn_new()`.
1389        Note that that callback's return value replaces the connection
1390        context set here.
1391
1392    :param sni:
1393
1394        The SNI is required for Google QUIC connections; it is optional for
1395        IETF QUIC and may be set to NULL.
1396
1397    :param base_plpmtu:
1398
1399        Base PLPMTU.  If set to zero, it is selected based on the
1400        engine settings (see
1401        :member:`lsquic_engine_settings.es_base_plpmtu`),
1402        QUIC version, and IP version.
1403
1404    :param sess_resume:
1405
1406        Pointer to previously saved session resumption data needed for
1407        TLS resumption.  May be NULL.
1408
1409    :param sess_resume_len:
1410
1411        Size of session resumption data.
1412
1413    :param token:
1414
1415        Pointer to previously received token to include in the Initial
1416        packet.  Tokens are used by IETF QUIC to pre-validate client
1417        connections, potentially avoiding a retry.
1418
1419        See :member:`lsquic_stream_if.on_new_token` callback.
1420
1421        May be NULL.
1422
1423    :param token_sz:
1424
1425        Size of data pointed to by ``token``.
1426
1427Closing Connections
1428-------------------
1429
1430.. function:: void lsquic_conn_going_away (lsquic_conn_t *conn)
1431
1432    Mark connection as going away: send GOAWAY frame and do not accept
1433    any more incoming streams, nor generate streams of our own.
1434
1435    Only applicable to HTTP/3 and GQUIC connections.  Otherwise a no-op.
1436
1437.. function:: void lsquic_conn_close (lsquic_conn_t *conn)
1438
1439    This closes the connection.  :member:`lsquic_stream_if.on_conn_closed`
1440    and :member:`lsquic_stream_if.on_close` callbacks will be called.
1441
1442.. function:: void lsquic_conn_abort (lsquic_conn_t *conn)
1443
1444    This aborts the connection.  The connection and all associated objects
1445    will be destroyed (with necessary callbacks called) during the next time
1446    :func:`lsquic_engine_process_conns()` is invoked.
1447
1448Creating Streams
1449----------------
1450
1451Similar to connections, streams are created by the library in server mode; they
1452correspond to requests.  In client mode, a new stream is created by
1453
1454.. function:: void lsquic_conn_make_stream (lsquic_conn_t *)
1455
1456    Create a new request stream.  This causes :member:`on_new_stream()` callback
1457    to be called.  If creating more requests is not permitted at the moment
1458    (due to number of concurrent streams limit), stream creation is registered
1459    as "pending" and the stream is created later when number of streams dips
1460    under the limit again.  Any number of pending streams can be created.
1461    Use :func:`lsquic_conn_n_pending_streams()` and
1462    :func:`lsquic_conn_cancel_pending_streams()` to manage pending streams.
1463
1464    If connection is going away, :func:`on_new_stream()` is called with the
1465    stream parameter set to NULL.
1466
1467Stream Events
1468-------------
1469
1470To register or unregister an interest in a read or write event, use the
1471following functions:
1472
1473.. function:: int lsquic_stream_wantread (lsquic_stream_t *stream, int want)
1474
1475    :param stream: Stream to read from.
1476    :param want: Boolean value indicating whether the caller wants to read
1477                 from stream.
1478    :return: Previous value of ``want`` or ``-1`` if the stream has already
1479             been closed for reading.
1480
1481    A stream becomes readable if there is was an error: for example, the
1482    peer may have reset the stream.  In this case, reading from the stream
1483    will return an error.
1484
1485.. function:: int lsquic_stream_wantwrite (lsquic_stream_t *stream, int want)
1486
1487    :param stream: Stream to write to.
1488    :param want: Boolean value indicating whether the caller wants to write
1489                 to stream.
1490    :return: Previous value of ``want`` or ``-1`` if the stream has already
1491             been closed for writing.
1492
1493Reading From Streams
1494--------------------
1495
1496.. function:: ssize_t lsquic_stream_read (lsquic_stream_t *stream, unsigned char *buf, size_t sz)
1497
1498    :param stream: Stream to read from.
1499    :param buf: Buffer to copy data to.
1500    :param sz: Size of the buffer.
1501    :return: Number of bytes read, zero if EOS has been reached, or -1 on error.
1502
1503    Read up to ``sz`` bytes from ``stream`` into buffer ``buf``.
1504
1505    ``-1`` is returned on error, in which case ``errno`` is set:
1506
1507    - ``EBADF``: The stream is closed.
1508    - ``ECONNRESET``: The stream has been reset.
1509    - ``EWOULDBLOCK``: There is no data to be read.
1510
1511.. function:: ssize_t lsquic_stream_readv (lsquic_stream_t *stream, const struct iovec *vec, int iovcnt)
1512
1513    :param stream: Stream to read from.
1514    :param vec: Array of ``iovec`` structures.
1515    :param iovcnt: Number of elements in ``vec``.
1516    :return: Number of bytes read, zero if EOS has been reached, or -1 on error.
1517
1518    Similar to :func:`lsquic_stream_read()`, but reads data into a vector.
1519
1520.. function:: ssize_t lsquic_stream_readf (lsquic_stream_t *stream, size_t (*readf)(void *ctx, const unsigned char *buf, size_t len, int fin), void *ctx)
1521
1522    :param stream: Stream to read from.
1523
1524    :param readf:
1525
1526        The callback takes four parameters:
1527
1528        - Pointer to user-supplied context;
1529        - Pointer to the data;
1530        - Data size (can be zero); and
1531        - Indicator whether the FIN follows the data.
1532
1533        The callback returns number of bytes processed.  If this number is zero
1534        or is smaller than ``len``, reading from stream stops.
1535
1536    :param ctx: Context pointer passed to ``readf``.
1537
1538    This function allows user-supplied callback to read the stream contents.
1539    It is meant to be used for zero-copy stream processing.
1540
1541    Return value and errors are same as in :func:`lsquic_stream_read()`.
1542
1543Writing To Streams
1544------------------
1545
1546.. function:: ssize_t lsquic_stream_write (lsquic_stream_t *stream, const void *buf, size_t len)
1547
1548    :param stream: Stream to write to.
1549    :param buf: Buffer to copy data from.
1550    :param len: Number of bytes to copy.
1551    :return: Number of bytes written -- which may be smaller than ``len`` -- or a negative
1552             value when an error occurs.
1553
1554    Write ``len`` bytes to the stream.  Returns number of bytes written, which
1555    may be smaller that ``len``.
1556
1557    A negative return value indicates a serious error (the library is likely
1558    to have aborted the connection because of it).
1559
1560.. function:: ssize_t lsquic_stream_writev (lsquic_stream_t *s, const struct iovec *vec, int count)
1561
1562    Like :func:`lsquic_stream_write()`, but read data from a vector.
1563
1564.. type:: struct lsquic_reader
1565
1566    Used as argument to :func:`lsquic_stream_writef()`.
1567
1568    .. member:: size_t (*lsqr_read) (void *lsqr_ctx, void *buf, size_t count)
1569
1570        :param lsqr_ctx: Pointer to user-specified context.
1571        :param buf: Memory location to write to.
1572        :param count: Size of available memory pointed to by ``buf``.
1573        :return:
1574
1575            Number of bytes written.  This is not a ``ssize_t`` because
1576            the read function is not supposed to return an error.  If an error
1577            occurs in the read function (for example, when reading from a file
1578            fails), it is supposed to deal with the error itself.
1579
1580    .. member:: size_t (*lsqr_size) (void *lsqr_ctx)
1581
1582        Return number of bytes remaining in the reader.
1583
1584    .. member:: void    *lsqr_ctx
1585
1586        Context pointer passed both to ``lsqr_read()`` and to ``lsqr_size()``.
1587
1588.. function:: ssize_t lsquic_stream_writef (lsquic_stream_t *stream, struct lsquic_reader *reader)
1589
1590    :param stream: Stream to write to.
1591    :param reader: Reader to read from.
1592    :return: Number of bytes written or -1 on error.
1593
1594    Write to stream using :type:`lsquic_reader`.  This is the most generic of
1595    the write functions -- :func:`lsquic_stream_write()` and
1596    :func:`lsquic_stream_writev()` utilize the same mechanism.
1597
1598.. function:: ssize_t lsquic_stream_pwritev (struct lsquic_stream *stream, ssize_t (*preadv)(void *user_data, const struct iovec *iov, int iovcnt), void *user_data, size_t n_to_write)
1599
1600    :param stream: Stream to write to.
1601    :param preadv: Pointer to a custom ``preadv(2)``-like function.
1602    :param user_data: Data to pass to ``preadv`` function.
1603    :param n_to_write: Number of bytes to write.
1604    :return: Number of bytes written or -1 on error.
1605
1606    Write to stream using user-supplied ``preadv()`` function.
1607    The stream allocates one or more packets and calls ``preadv()``,
1608    which then fills the array of buffers.  This is a good way to
1609    minimize the number of ``read(2)`` system calls; the user can call
1610    ``preadv(2)`` instead.
1611
1612    The number of bytes available in the ``iov`` vector passed back to
1613    the user callback may be smaller than ``n_to_write``.  The expected
1614    use pattern is to pass the number of bytes remaining in the file
1615    and keep on calling ``preadv(2)``.
1616
1617    Note that, unlike other stream-writing functions above,
1618    ``lsquic_stream_pwritev()`` does *not* buffer bytes inside the
1619    stream; it only writes to packets.  That means the caller must be
1620    prepared for this function to return 0 even inside the "on write"
1621    stream callback.  In that case, the caller should fall back to using
1622    another write function.
1623
1624    It is OK for the ``preadv`` callback to write fewer bytes that
1625    ``n_to_write``.  (This can happen if the underlying data source
1626    is truncated.)
1627
1628::
1629
1630    /*
1631     * For example, the return value of zero can be handled as follows:
1632     */
1633    nw = lsquic_stream_pwritev(stream, my_readv, some_ctx, n_to_write);
1634    if (nw == 0)
1635        nw = lsquic_stream_write(stream, rem_bytes_buf, rem_bytes_len);
1636
1637.. function:: int lsquic_stream_flush (lsquic_stream_t *stream)
1638
1639    :param stream: Stream to flush.
1640    :return: 0 on success and -1 on failure.
1641
1642    Flush any buffered data.  This triggers packetizing even a single byte
1643    into a separate frame.  Flushing a closed stream is an error.
1644
1645Closing Streams
1646---------------
1647
1648Streams can be closed for reading, writing, or both.
1649``on_close()`` callback is called at some point after a stream is closed
1650for both reading and writing,
1651
1652.. function:: int lsquic_stream_shutdown (lsquic_stream_t *stream, int how)
1653
1654    :param stream: Stream to shut down.
1655    :param how:
1656
1657        This parameter specifies what do to.  Allowed values are:
1658
1659        - 0: Stop reading.
1660        - 1: Stop writing.
1661        - 2: Stop both reading and writing.
1662
1663    :return: 0 on success or -1 on failure.
1664
1665.. function:: int lsquic_stream_close (lsquic_stream_t *stream)
1666
1667    :param stream: Stream to close.
1668    :return: 0 on success or -1 on failure.
1669
1670Sending HTTP Headers
1671--------------------
1672
1673.. type:: struct lsxpack_header
1674
1675This type is defined in _lsxpack_header.h_.  See that header file for
1676more information.
1677
1678    .. member:: char             *buf
1679
1680        the buffer for headers
1681
1682    .. member:: uint32_t          name_hash
1683
1684        hash value for name
1685
1686    .. member:: uint32_t          nameval_hash
1687
1688        hash value for name + value
1689
1690    .. member:: lsxpack_strlen_t  name_offset
1691
1692        the offset for name in the buffer
1693
1694    .. member:: lsxpack_strlen_t  name_len
1695
1696        the length of name
1697
1698    .. member:: lsxpack_strlen_t  val_offset
1699
1700        the offset for value in the buffer
1701
1702    .. member:: lsxpack_strlen_t  val_len
1703
1704        the length of value
1705
1706    .. member:: uint16_t          chain_next_idx
1707
1708        mainly for cookie value chain
1709
1710    .. member:: uint8_t           hpack_index
1711
1712        HPACK static table index
1713
1714    .. member:: uint8_t           qpack_index
1715
1716        QPACK static table index
1717
1718    .. member:: uint8_t           app_index
1719
1720        APP header index
1721
1722    .. member:: enum lsxpack_flag flags:8
1723
1724        combination of lsxpack_flag
1725
1726    .. member:: uint8_t           indexed_type
1727
1728        control to disable index or not
1729
1730    .. member:: uint8_t           dec_overhead
1731
1732        num of extra bytes written to decoded buffer
1733
1734.. type:: lsquic_http_headers_t
1735
1736    .. member::     int   count
1737
1738        Number of headers in ``headers``.
1739
1740    .. member::     struct lsxpack_header   *headers
1741
1742        Pointer to an array of HTTP headers.
1743
1744    HTTP header list structure.  Contains a list of HTTP headers.
1745
1746.. function:: int lsquic_stream_send_headers (lsquic_stream_t *stream, const lsquic_http_headers_t *headers, int eos)
1747
1748    :param stream:
1749
1750        Stream to send headers on.
1751
1752    :param headers:
1753
1754        Headers to send.
1755
1756    :param eos:
1757
1758        Boolean value to indicate whether these headers constitute the whole
1759        HTTP message.
1760
1761    :return:
1762
1763        0 on success or -1 on error.
1764
1765Receiving HTTP Headers
1766----------------------
1767
1768If ``ea_hsi_if`` is not set in :type:`lsquic_engine_api`, the library will translate
1769HPACK- and QPACK-encoded headers into HTTP/1.x-like headers and prepend them to the
1770stream.  To the stream-reading function, it will look as if a standard HTTP/1.x
1771message.
1772
1773Alternatively, you can specify header-processing set of functions and manage header
1774fields yourself.  In that case, the header set must be "read" from the stream via
1775:func:`lsquic_stream_get_hset()`.
1776
1777.. type:: struct lsquic_hset_if
1778
1779    .. member::  void * (*hsi_create_header_set)(void *hsi_ctx, lsquic_stream_t *stream, int is_push_promise)
1780
1781        :param hsi_ctx: User context.  This is the pointer specifed in ``ea_hsi_ctx``.
1782        :param stream: Stream with which the header set is associated.  May be set
1783                       to NULL in server mode.
1784        :param is_push_promise: Boolean value indicating whether this header set is
1785                                for a push promise.
1786        :return: Pointer to user-defined header set object.
1787
1788        Create a new header set.  This object is (and must be) fetched from a
1789        stream by calling :func:`lsquic_stream_get_hset()` before the stream can
1790        be read.
1791
1792    .. member:: struct lsxpack_header * (*hsi_prepare_decode)(void *hdr_set, struct lsxpack_header *hdr, size_t space)
1793
1794        Return a header set prepared for decoding.  If ``hdr`` is NULL, this
1795        means return a new structure with at least ``space`` bytes available
1796        in the decoder buffer.  On success, a newly prepared header is
1797        returned.
1798
1799        If ``hdr`` is not NULL, it means there was not enough decoder buffer
1800        and it must be increased to at least ``space`` bytes.  ``buf``, ``val_len``,
1801        and ``name_offset`` member of the ``hdr`` structure may change.  On
1802        success, the return value is the same as ``hdr``.
1803
1804        If NULL is returned, the space cannot be allocated.
1805
1806    .. member:: int (*hsi_process_header)(void *hdr_set, struct lsxpack_header *hdr)
1807
1808        Process new header.
1809
1810        :param hdr_set:
1811
1812            Header set to add the new header field to.  This is the object
1813            returned by ``hsi_create_header_set()``.
1814
1815        :param hdr:
1816
1817            The header returned by @ref ``hsi_prepare_decode()``.
1818
1819        :return:
1820
1821            Return 0 on success, a positive value if a header error occured,
1822            or a negative value on any other error.  A positive return value
1823            will result in cancellation of associated stream. A negative return
1824            value will result in connection being aborted.
1825
1826    .. member:: void                (*hsi_discard_header_set)(void *hdr_set)
1827
1828        :param hdr_set: Header set to discard.
1829
1830        Discard header set.  This is called for unclaimed header sets and
1831        header sets that had an error.
1832
1833    .. member:: enum lsquic_hsi_flag hsi_flags
1834
1835        These flags specify properties of decoded headers passed to
1836        ``hsi_process_header()``.  This is only applicable to QPACK headers;
1837        HPACK library header properties are based on compilation, not
1838        run-time, options.
1839
1840.. function:: void * lsquic_stream_get_hset (lsquic_stream_t *stream)
1841
1842    :param stream: Stream to fetch header set from.
1843
1844    :return: Header set associated with the stream.
1845
1846    Get header set associated with the stream.  The header set is created by
1847    ``hsi_create_header_set()`` callback.  After this call, the ownership of
1848    the header set is transferred to the caller.
1849
1850    This call must precede calls to :func:`lsquic_stream_read()`,
1851    :func:`lsquic_stream_readv()`, and :func:`lsquic_stream_readf()`.
1852
1853    If the optional header set interface is not specified,
1854    this function returns NULL.
1855
1856Push Promises
1857-------------
1858
1859.. function:: int lsquic_conn_push_stream (lsquic_conn_t *conn, void *hdr_set, lsquic_stream_t *stream, const lsquic_http_headers_t *headers)
1860
1861    :return:
1862
1863        - 0: Stream pushed successfully.
1864        - 1: Stream push failed because it is disabled or because we hit
1865             stream limit or connection is going away.
1866        - -1: Stream push failed because of an internal error.
1867
1868    A server may push a stream.  This call creates a new stream in reference
1869    to stream ``stream``.  It will behave as if the client made a request: it will
1870    trigger ``on_new_stream()`` event and it can be used as a regular client-initiated stream.
1871
1872    ``hdr_set`` must be set.  It is passed as-is to :func:`lsquic_stream_get_hset()`.
1873
1874.. function:: int lsquic_conn_is_push_enabled (lsquic_conn_t *conn)
1875
1876    :return: Boolean value indicating whether push promises are enabled.
1877
1878    Only makes sense in server mode: the client cannot push a stream and this
1879    function always returns false in client mode.
1880
1881.. function:: int lsquic_stream_is_pushed (const lsquic_stream_t *stream)
1882
1883    :return: Boolean value indicating whether this is a pushed stream.
1884
1885.. function:: int lsquic_stream_refuse_push (lsquic_stream_t *stream)
1886
1887    Refuse pushed stream.  Call it from ``on_new_stream()``.  No need to
1888    call :func:`lsquic_stream_close()` after this.  ``on_close()`` will be called.
1889
1890.. function:: int lsquic_stream_push_info (const lsquic_stream_t *stream, lsquic_stream_id_t *ref_stream_id, void **hdr_set)
1891
1892    Get information associated with pushed stream
1893
1894    :param ref_stream_id: Stream ID in response to which push promise was sent.
1895    :param hdr_set: Header set. This object was passed to or generated by :func:`lsquic_conn_push_stream()`.
1896
1897    :return: 0 on success and -1 if this is not a pushed stream.
1898
1899Stream Priorities
1900-----------------
1901
1902.. function:: unsigned lsquic_stream_priority (const lsquic_stream_t *stream)
1903
1904    Return current priority of the stream.
1905
1906.. function:: int lsquic_stream_set_priority (lsquic_stream_t *stream, unsigned priority)
1907
1908    Set stream priority.  Valid priority values are 1 through 256, inclusive.
1909    Lower value means higher priority.
1910
1911    :return: 0 on success of -1 on failure (this happens if priority value is invalid).
1912
1913Miscellaneous Engine Functions
1914------------------------------
1915
1916.. function:: unsigned lsquic_engine_quic_versions (const lsquic_engine_t *engine)
1917
1918    Return the list of QUIC versions (as bitmask) this engine instance supports.
1919
1920.. function:: unsigned lsquic_engine_count_attq (lsquic_engine_t *engine, int from_now)
1921
1922    Return number of connections whose advisory tick time is before current
1923    time plus ``from_now`` microseconds from now.  ``from_now`` can be negative.
1924
1925Miscellaneous Connection Functions
1926----------------------------------
1927
1928.. function:: enum lsquic_version lsquic_conn_quic_version (const lsquic_conn_t *conn)
1929
1930    Get QUIC version used by the connection.
1931
1932    If version has not yet been negotiated (can happen in client mode), ``-1`` is
1933    returned.
1934
1935.. function:: const lsquic_cid_t * lsquic_conn_id (const lsquic_conn_t *conn)
1936
1937    Get connection ID.
1938
1939.. function:: lsquic_engine_t * lsquic_conn_get_engine (lsquic_conn_t *conn)
1940
1941    Get pointer to the engine.
1942
1943.. function:: int lsquic_conn_get_sockaddr (lsquic_conn_t *conn, const struct sockaddr **local, const struct sockaddr **peer)
1944
1945    Get current (last used) addresses associated with the current path
1946    used by the connection.
1947
1948.. function:: struct stack_st_X509 * lsquic_conn_get_server_cert_chain (lsquic_conn_t *conn)
1949
1950    Get certificate chain returned by the server.  This can be used for
1951    server certificate verification.
1952
1953    The caller releases the stack using sk_X509_free().
1954
1955.. function:: lsquic_conn_ctx_t * lsquic_conn_get_ctx (const lsquic_conn_t *conn)
1956
1957    Get user-supplied context associated with the connection.
1958
1959.. function:: void lsquic_conn_set_ctx (lsquic_conn_t *conn, lsquic_conn_ctx_t *ctx)
1960
1961    Set user-supplied context associated with the connection.
1962
1963.. function:: void * lsquic_conn_get_peer_ctx (lsquic_conn_t *conn, const struct sockaddr *local_sa)
1964
1965    Get peer context associated with the connection and local address.
1966
1967.. function:: enum LSQUIC_CONN_STATUS lsquic_conn_status (lsquic_conn_t *conn, char *errbuf, size_t bufsz)
1968
1969    Get connection status.
1970
1971Miscellaneous Stream Functions
1972------------------------------
1973
1974.. function:: unsigned lsquic_conn_n_avail_streams (const lsquic_conn_t *conn)
1975
1976    Return max allowed outbound streams less current outbound streams.
1977
1978.. function:: unsigned lsquic_conn_n_pending_streams (const lsquic_conn_t *conn)
1979
1980    Return number of delayed streams currently pending.
1981
1982.. function:: unsigned lsquic_conn_cancel_pending_streams (lsquic_conn_t *, unsigned n)
1983
1984    Cancel ``n`` pending streams.  Returns new number of pending streams.
1985
1986.. function:: lsquic_conn_t * lsquic_stream_conn (const lsquic_stream_t *stream)
1987
1988    Get a pointer to the connection object.  Use it with connection functions.
1989
1990.. function:: int lsquic_stream_is_rejected (const lsquic_stream_t *stream)
1991
1992    Returns true if this stream was rejected, false otherwise.  Use this as
1993    an aid to distinguish between errors.
1994
1995.. function:: int lsquic_stream_has_unacked_data (const lsquic_stream_t *stream)
1996
1997    Return true if peer has not ACKed all data written to the stream.  This
1998    includes both packetized and buffered data.
1999
2000Other Functions
2001---------------
2002
2003.. function:: lsquic_conn_t lsquic_ssl_to_conn (const SSL *)
2004
2005    Get connection associated with this SSL object.
2006
2007.. function:: enum lsquic_version lsquic_str2ver (const char *str, size_t len)
2008
2009    Translate string QUIC version to LSQUIC QUIC version representation.
2010
2011.. function:: enum lsquic_version lsquic_alpn2ver (const char *alpn, size_t len)
2012
2013    Translate ALPN (e.g. "h3", "h3-23", "h3-Q046") to LSQUIC enum.
2014
2015Miscellaneous Types
2016-------------------
2017
2018.. type:: struct lsquic_shared_hash_if
2019
2020    The shared hash interface is used to share data between multiple LSQUIC instances.
2021
2022    .. member:: int (*shi_insert)(void *shi_ctx, void *key, unsigned key_sz, void *data, unsigned data_sz, time_t expiry)
2023
2024        :param shi_ctx:
2025
2026            Shared memory context pointer
2027
2028        :param key:
2029
2030            Key data.
2031
2032        :param key_sz:
2033
2034            Key size.
2035
2036        :param data:
2037
2038            Pointer to the data to store.
2039
2040        :param data_sz:
2041
2042            Data size.
2043
2044        :param expiry: When this item expires.  If you want your item to never expire, set this to zero.
2045
2046        :return: 0 on success, -1 on failure.
2047
2048        If inserted successfully, ``free()`` will be called on ``data`` and ``key``
2049        pointer when the element is deleted, whether due to expiration
2050        or explicit deletion.
2051
2052    .. member:: int (*shi_delete)(void *shi_ctx, const void *key, unsigned key_sz)
2053
2054        Delete item from shared hash
2055
2056        :return: 0 on success, -1 on failure.
2057
2058    .. member:: int (*shi_lookup)(void *shi_ctx, const void *key, unsigned key_sz, void **data, unsigned *data_sz)
2059
2060        :param shi_ctx:
2061
2062            Shared memory context pointer
2063
2064        :param key:
2065
2066            Key data.
2067
2068        :param key_sz:
2069
2070            Key size.
2071
2072        :param data:
2073
2074            Pointer to set to the result.
2075
2076        :param data_sz:
2077
2078            Pointer to the data size.
2079
2080        :return:
2081
2082            - ``1``: found.
2083            - ``0``: not found.
2084            - ``-1``:  error (perhaps not enough room in ``data`` if copy was attempted).
2085
2086         The implementation may choose to copy the object into buffer pointed
2087         to by ``data``, so you should have it ready.
2088
2089.. type:: struct lsquic_packout_mem_if
2090
2091    The packet out memory interface is used by LSQUIC to get buffers to
2092    which outgoing packets will be written before they are passed to
2093    :member:`lsquic_engine_api.ea_packets_out` callback.
2094
2095    If not specified, malloc() and free() are used.
2096
2097    .. member:: void *  (*pmi_allocate) (void *pmi_ctx, void *peer_ctx, lsquic_conn_get_ctx *conn_ctx, unsigned short sz, char is_ipv6)
2098
2099        Allocate buffer for sending.
2100
2101    .. member:: void    (*pmi_release)  (void *pmi_ctx, void *peer_ctx, void *buf, char is_ipv6)
2102
2103        This function is used to release the allocated buffer after it is
2104        sent via ``ea_packets_out()``.
2105
2106    .. member:: void    (*pmi_return)  (void *pmi_ctx, void *peer_ctx, void *buf, char is_ipv6)
2107
2108        If allocated buffer is not going to be sent, return it to the
2109        caller using this function.
2110
2111.. type:: typedef void (*lsquic_cids_update_f)(void *ctx, void **peer_ctx, const lsquic_cid_t *cids, unsigned n_cids)
2112
2113    :param ctx:
2114
2115        Context associated with the CID lifecycle callbacks (ea_cids_update_ctx).
2116
2117    :param peer_ctx:
2118
2119        Array of peer context pointers.
2120
2121    :param cids:
2122
2123        Array of connection IDs.
2124
2125    :param n_cids:
2126
2127        Number of elements in the peer context pointer and connection ID arrays.
2128
2129.. type:: enum lsquic_logger_timestamp_style
2130
2131    Enumerate timestamp styles supported by LSQUIC logger mechanism.
2132
2133    .. member:: LLTS_NONE
2134
2135        No timestamp is generated.
2136
2137    .. member:: LLTS_HHMMSSMS
2138
2139        The timestamp consists of 24 hours, minutes, seconds, and milliseconds.  Example: 13:43:46.671
2140
2141    .. member:: LLTS_YYYYMMDD_HHMMSSMS
2142
2143        Like above, plus date, e.g: 2017-03-21 13:43:46.671
2144
2145    .. member:: LLTS_CHROMELIKE
2146
2147        This is Chrome-like timestamp used by proto-quic.  The timestamp
2148        includes month, date, hours, minutes, seconds, and microseconds.
2149
2150        Example: 1223/104613.946956 (instead of 12/23 10:46:13.946956).
2151
2152        This is to facilitate reading two logs side-by-side.
2153
2154    .. member:: LLTS_HHMMSSUS
2155
2156        The timestamp consists of 24 hours, minutes, seconds, and microseconds.  Example: 13:43:46.671123
2157
2158    .. member:: LLTS_YYYYMMDD_HHMMSSUS
2159
2160        Date and time using microsecond resolution, e.g: 2017-03-21 13:43:46.671123
2161
2162.. type:: enum LSQUIC_CONN_STATUS
2163
2164    .. member:: LSCONN_ST_HSK_IN_PROGRESS
2165    .. member:: LSCONN_ST_CONNECTED
2166    .. member:: LSCONN_ST_HSK_FAILURE
2167    .. member:: LSCONN_ST_GOING_AWAY
2168    .. member:: LSCONN_ST_TIMED_OUT
2169    .. member:: LSCONN_ST_RESET
2170
2171        If es_honor_prst is not set, the connection will never get public
2172        reset packets and this flag will not be set.
2173
2174    .. member:: LSCONN_ST_USER_ABORTED
2175    .. member:: LSCONN_ST_ERROR
2176    .. member:: LSCONN_ST_CLOSED
2177    .. member:: LSCONN_ST_PEER_GOING_AWAY
2178
2179.. type:: enum lsquic_hsi_flag
2180
2181    These flags are ORed together to specify properties of
2182    :type:`lsxpack_header` passed to :member:`lsquic_hset_if.hsi_process_header`.
2183
2184    .. member:: LSQUIC_HSI_HTTP1X
2185
2186        Turn HTTP/1.x mode on or off.  In this mode, decoded name and value
2187        pair are separated by ``": "`` and ``"\r\n"`` is appended to the end
2188        of the string.  By default, this mode is off.
2189
2190    .. member:: LSQUIC_HSI_HASH_NAME
2191
2192        Include name hash into lsxpack_header.
2193
2194    .. member:: LSQUIC_HSI_HASH_NAMEVAL
2195
2196        Include nameval hash into lsxpack_header.
2197
2198Global Variables
2199----------------
2200
2201.. var:: const char *const lsquic_ver2str[N_LSQVER]
2202
2203    Convert LSQUIC version to human-readable string
2204
2205List of Log Modules
2206-------------------
2207
2208The following log modules are defined:
2209
2210- *alarmset*: Alarm processing.
2211- *bbr*: BBRv1 congestion controller.
2212- *bw-sampler*: Bandwidth sampler (used by BBR).
2213- *cfcw*: Connection flow control window.
2214- *conn*: Connection.
2215- *crypto*: Low-level Google QUIC cryptography tracing.
2216- *cubic*: Cubic congestion controller.
2217- *di*: "Data In" handler (storing incoming data before it is read).
2218- *eng-hist*: Engine history.
2219- *engine*: Engine.
2220- *event*: Cross-module significant events.
2221- *frame-reader*: Reader of the HEADERS stream in Google QUIC.
2222- *frame-writer*: Writer of the HEADERS stream in Google QUIC.
2223- *handshake*: Handshake and packet encryption and decryption.
2224- *hcsi-reader*: Reader of the HTTP/3 control stream.
2225- *hcso-writer*: Writer of the HTTP/3 control stream.
2226- *headers*: HEADERS stream (Google QUIC).
2227- *hsk-adapter*:
2228- *http1x*: Header conversion to HTTP/1.x.
2229- *logger*: Logger.
2230- *mini-conn*: Mini connection.
2231- *pacer*: Pacer.
2232- *parse*: Parsing.
2233- *prq*: PRQ stands for Packet Request Queue.  This logs scheduling
2234  and sending packets not associated with a connection: version
2235  negotiation and stateless resets.
2236- *purga*: CID purgatory.
2237- *qdec-hdl*: QPACK decoder stream handler.
2238- *qenc-hdl*: QPACK encoder stream handler.
2239- *qlog*: QLOG output.  At the moment, it is out of date.
2240- *qpack-dec*: QPACK decoder.
2241- *qpack-enc*: QPACK encoder.
2242- *sendctl*: Send controller.
2243- *sfcw*: Stream flow control window.
2244- *spi*: Stream priority iterator.
2245- *stream*: Stream operation.
2246- *tokgen*: Token generation and validation.
2247- *trapa*: Transport parameter processing.
2248
2249.. _extensible-http-priorities:
2250
2251Extensible HTTP Priorities
2252--------------------------
2253
2254lsquic supports the
2255`Extensible HTTP Priorities Extension <https://tools.ietf.org/html/draft-ietf-httpbis-priority>`_.
2256It is enabled by default when HTTP/3 is used.  The "urgency" and "incremental"
2257parameters are included into a dedicated type:
2258
2259.. type:: struct lsquic_ext_http_prio
2260
2261    .. member::     unsigned char       urgency
2262
2263        This value's range is [0, 7], where 0 is the highest and 7 is
2264        the lowest urgency.
2265
2266    .. member::     signed char         incremental
2267
2268        This is a boolean value.  The valid range is [0, 1].
2269
2270Some useful macros are also available:
2271
2272.. macro:: LSQUIC_MAX_HTTP_URGENCY
2273
2274The maximum value of the "urgency" parameter is 7.
2275
2276.. macro:: LSQUIC_DEF_HTTP_URGENCY
2277
2278The default value of the "urgency" parameter is 3.
2279
2280.. macro:: LSQUIC_DEF_HTTP_INCREMENTAL
2281
2282The default value of the "incremental" parameter is 0.
2283
2284There are two functions to
2285manage a stream's priority:
2286
2287.. function:: int lsquic_stream_get_http_prio (lsquic_stream_t \*stream, struct lsquic_ext_http_prio \*ehp)
2288
2289    Get a stream's priority information.
2290
2291    :param stream:  The stream whose priority informaion we want.
2292
2293    :param ehp:     Structure that is to be populated with the stream's
2294                    priority information.
2295
2296    :return:    Returns zero on success of a negative value on failure.
2297                A failure occurs if this is not an HTTP/3 stream or if
2298                Extensible HTTP Priorities have not been enabled.
2299                See :member:`lsquic_engine_settings.es_ext_http_prio`.
2300
2301.. function:: int lsquic_stream_set_http_prio (lsquic_stream_t \*stream, const struct lsquic_ext_http_prio \*ehp)
2302
2303    Set a stream's priority information.
2304
2305    :param stream:  The stream whose priority we want to set.
2306
2307    :param ehp:     Structure containing the stream's new priority information.
2308
2309    :return:        Returns zero on success of a negative value on failure.
2310                    A failure occurs if some internal error occured or if this
2311                    is not an HTTP/3 stream or if Extensible HTTP Priorities
2312                    haven't been enabled.
2313                    See :member:`lsquic_engine_settings.es_ext_http_prio`.
2314
2315.. _apiref-datagrams:
2316
2317Datagrams
2318---------
2319
2320lsquic supports the
2321`Unreliable Datagram Extension <https://tools.ietf.org/html/draft-pauly-quic-datagram-05>`_.
2322To enable datagrams, set :member:`lsquic_engine_settings.es_datagrams` to
2323true and specify
2324:member:`lsquic_stream_if.on_datagram`
2325and
2326:member:`lsquic_stream_if.on_dg_write` callbacks.
2327
2328.. function:: int lsquic_conn_want_datagram_write (lsquic_conn_t *conn, int want)
2329
2330    Indicate desire (or lack thereof) to write a datagram.
2331
2332    :param conn: Connection on which to send a datagram.
2333    :param want: Boolean value indicating whether the caller wants to write
2334                 a datagram.
2335    :return: Previous value of ``want`` or ``-1`` if the datagrams cannot be
2336             written.
2337
2338.. function:: size_t lsquic_conn_get_min_datagram_size (lsquic_conn_t *conn)
2339
2340    Get minimum datagram size.  By default, this value is zero.
2341
2342.. function:: int lsquic_conn_set_min_datagram_size (lsquic_conn_t *conn, size_t sz)
2343
2344    Set minimum datagram size.  This is the minumum value of the buffer
2345    passed to the :member:`lsquic_stream_if.on_dg_write` callback.
2346    Returns 0 on success and -1 on error.
2347