lsquic_http1x_if.h revision 3b55e6ae
1/* Copyright (c) 2017 - 2018 LiteSpeed Technologies Inc.  See LICENSE. */
2#ifndef LSQUIC_HTTP1X_IF_H
3#define LSQUIC_HTTP1X_IF_H 1
4
5struct lsquic_hset_if;
6
7struct http1x_ctor_ctx
8{
9    lsquic_cid_t    cid;                /* Used for logging */
10    unsigned        max_headers_sz;
11    int             is_server;
12};
13
14extern const struct lsquic_hset_if *const lsquic_http1x_if;
15
16#endif
17