lsquic_engine_public.h revision 7f2bd84c
1/* Copyright (c) 2017 - 2018 LiteSpeed Technologies Inc.  See LICENSE. */
2/*
3 * lsquic_engine_public.h -- Engine's "public interface"
4 *
5 */
6
7#ifndef LSQUIC_ENGINE_PUBLIC_H
8#define LSQUIC_ENGINE_PUBLIC_H 1
9
10struct lsquic_conn;
11struct lsquic_engine;
12struct stack_st_X509;
13
14struct lsquic_engine_public {
15    struct lsquic_mm                enp_mm;
16    struct lsquic_engine_settings   enp_settings;
17    int                           (*enp_verify_cert)(void *verify_ctx,
18                                            struct stack_st_X509 *chain);
19    void                           *enp_verify_ctx;
20    const struct lsquic_packout_mem_if
21                                   *enp_pmi;
22    void                           *enp_pmi_ctx;
23    struct lsquic_engine           *enp_engine;
24    enum {
25        ENPUB_PROC  = (1 << 0), /* Being processed by one of the user-facing
26                                 * functions.
27                                 */
28        ENPUB_CAN_SEND = (1 << 1),
29    }                               enp_flags;
30    unsigned char                   enp_ver_tags_buf[ sizeof(lsquic_ver_tag_t) * N_LSQVER ];
31    unsigned                        enp_ver_tags_len;
32};
33
34/* Put connection onto the Tickable Queue if it is not already on it.  If
35 * connection is being destroyed, this is a no-op.
36 */
37void
38lsquic_engine_add_conn_to_tickable (struct lsquic_engine_public *,
39                                                        lsquic_conn_t *);
40
41/* Put connection onto Advisory Tick Time  Queue if it is not already on it.
42 */
43void
44lsquic_engine_add_conn_to_attq (struct lsquic_engine_public *enpub,
45                                            lsquic_conn_t *, lsquic_time_t);
46
47#endif
48