mirror of
https://github.com/brunoos/luasec.git
synced 2025-04-05 00:06:46 +02:00
23 lines
476 B
C
23 lines
476 B
C
#ifndef LSEC_OPTIONS_H
|
|
#define LSEC_OPTIONS_H
|
|
|
|
/*--------------------------------------------------------------------------
|
|
* LuaSec 1.3.1
|
|
*
|
|
* Copyright (C) 2006-2023 Bruno Silvestre
|
|
*
|
|
*--------------------------------------------------------------------------*/
|
|
|
|
#include "compat.h"
|
|
|
|
struct lsec_ssl_option_s {
|
|
const char *name;
|
|
unsigned long code;
|
|
};
|
|
|
|
typedef struct lsec_ssl_option_s lsec_ssl_option_t;
|
|
|
|
LSEC_API lsec_ssl_option_t* lsec_get_ssl_options();
|
|
|
|
#endif
|