1 #ifndef LSEC_OPTIONS_H
2 #define LSEC_OPTIONS_H
3 
4 /*--------------------------------------------------------------------------
5  * LuaSec 1.0.2
6  *
7  * Copyright (C) 2006-2021 Bruno Silvestre
8  *
9  *--------------------------------------------------------------------------*/
10 
11 #include "compat.h"
12 
13 struct lsec_ssl_option_s {
14   const char *name;
15   unsigned long code;
16 };
17 
18 typedef struct lsec_ssl_option_s lsec_ssl_option_t;
19 
20 LSEC_API lsec_ssl_option_t* lsec_get_ssl_options();
21 
22 #endif
23