mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-02 20:08:21 +08:00
cf2528eb7c
完善了非阻塞IO的SSL功能;将 acl/samples/ 下的示例分别移到 lib_acl 及 lib_protocol 目录下
19 lines
260 B
C
19 lines
260 B
C
#include "lib_acl.h"
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "mem_gc.h"
|
|
#include "mem_test.h"
|
|
|
|
static void init(void)
|
|
{
|
|
mem_gc_hook();
|
|
}
|
|
|
|
int main(int argc acl_unused, char *argv[] acl_unused)
|
|
{
|
|
init();
|
|
mem_test();
|
|
return (0);
|
|
}
|
|
|