mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-02 11:57:43 +08:00
28 lines
509 B
C
28 lines
509 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[] = {
|
|||
|
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʾ<EFBFBD><CABE> <09>ص<EFBFBD><D8B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <09>ص<EFBFBD><D8B5><EFBFBD><EFBFBD><EFBFBD> <20>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD>ڲ<EFBFBD><DAB2><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
/* 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
|
|||
|
|