acl/app/gid/gid_server/include/cmdline_service.h

22 lines
372 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef __PROTO_CMD_INCLUDE_H__
#define __PROTO_CMD_INCLUDE_H__
#include "lib_acl.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* 命令行方式的协议处理方式
* @param client {ACL_VSTREAM*} 客户端流
* @return {int} 0表示正常1表示正常且保持长连接-1表示出错
*/
int cmdline_service(ACL_VSTREAM *client);
#ifdef __cplusplus
}
#endif
#endif