mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-01 03:17:37 +08:00
28 lines
536 B
C
28 lines
536 B
C
#ifndef __TEST_NETTAB_INCLUDE_H__
|
|
#define __TEST_NETTAB_INCLUDE_H__
|
|
|
|
#include "lib_acl.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "test_net.h"
|
|
|
|
static AUT_FN_ITEM __test_fn_tab[] = {
|
|
/* 命令字名称 函数提示名 回调函数名称 回调参数 是否是内部命令 */
|
|
/* test_connect.c */
|
|
{ "test_connect", "test_connect", test_connect, NULL, 0 },
|
|
|
|
/* test_net_misc.c */
|
|
{ "test_mask_addr", "test_mask_addr", test_mask_addr, NULL, 0 },
|
|
|
|
{ NULL, NULL, NULL, NULL, 0},
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|