17 lines
322 B
C
17 lines
322 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
|
|
struct session_manager;
|
|
struct session_manager_rte *session_manager_get_rte(struct session_manager *sess_mgr, uint16_t thread_id);
|
|
struct session_manager_cfg *session_manager_get_cfg(struct session_manager *sess_mgr);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|