2019-07-29 10:20:17 +00:00
|
|
|
#ifndef _LOG_REMOTE_H
|
|
|
|
#define _LOG_REMOTE_H
|
|
|
|
|
|
|
|
#include "ulog_api.h"
|
|
|
|
#include "common_types.h"
|
|
|
|
#include "rpc_common.h"
|
2019-08-13 08:25:43 +00:00
|
|
|
#include "log_types.h"
|
2019-08-01 08:44:18 +00:00
|
|
|
|
|
|
|
void rpc_conf_log_add_remote(rpc_conn *conn, pointer input, int input_len, pointer data);
|
|
|
|
void rpc_conf_log_del_remote(rpc_conn *conn, pointer input, int input_len, pointer data);
|
|
|
|
void rpc_conf_log_remote_level(rpc_conn *conn, pointer input, int input_len, pointer data);
|
2019-07-29 10:20:17 +00:00
|
|
|
|
2019-08-01 08:44:18 +00:00
|
|
|
#endif
|