lsquic_global.c revision 50aadb33
1/* Copyright (c) 2017 LiteSpeed Technologies Inc.  See LICENSE. */
2/*
3 * Global state
4 */
5
6#include "lsquic_types.h"
7#include "lsquic.h"
8#include "lsquic_handshake.h"
9
10
11int
12lsquic_global_init (int flags)
13{
14    return handshake_init(flags);
15}
16
17
18void
19lsquic_global_cleanup (void)
20{
21    handshake_cleanup();
22}
23