20 lines
457 B
C
20 lines
457 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
void stellar_test_result_setup();
|
|
char *stellar_test_result_json_export();
|
|
void stellar_test_result_cleanup();
|
|
|
|
#define GTEST_LPIP_MODULE_NAME "TEST_LPIP"
|
|
void gtest_lpip_on_packet(struct packet *pkt, struct module *mod);
|
|
|
|
struct module *gtest_lpip_module_init(struct module_manager *mod_mgr);
|
|
void gtest_lpip_module_exit(struct module_manager *mod_mgr, struct module *mod);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |