mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 17:30:53 +08:00
cf2528eb7c
完善了非阻塞IO的SSL功能;将 acl/samples/ 下的示例分别移到 lib_acl 及 lib_protocol 目录下
35 lines
659 B
C
35 lines
659 B
C
|
|
#ifndef __SERVICE_MAIN_INCLUDE_H__
|
|
#define __SERVICE_MAIN_INCLUDE_H__
|
|
|
|
#include "lib_acl.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* 初始化函数,服务器模板框架启动后仅调用该函数一次
|
|
* @param init_ctx {void*} 用户自定义类型指针
|
|
*/
|
|
extern void service_init(void *init_ctx);
|
|
|
|
/**
|
|
* 进程退出时的回调函数
|
|
* @param exist_ctx {void*} 用户自定义类型指针
|
|
*/
|
|
extern void service_exit(void *exit_ctx);
|
|
|
|
/**
|
|
* 协议处理函数入口
|
|
* @param stream {ACL_VSTREAM*} 客户端数据连接流
|
|
* @param run_ctx {void*} 用户自定义类型指针
|
|
*/
|
|
extern int service_main(ACL_VSTREAM *stream, void *run_ctx);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|