mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-30 10:57:34 +08:00
18 lines
295 B
C
18 lines
295 B
C
#include "lib_acl.h"
|
|
/* TLS library. */
|
|
|
|
#ifdef USE_TLS
|
|
#include "tls.h"
|
|
#include "tls_params.h"
|
|
|
|
/* main - the main program, non-TLS version */
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
var_tlsmgr_stand_alone = 1;
|
|
tlsmgr_alone_start(argc, argv);
|
|
return (0);
|
|
}
|
|
|
|
#endif
|