2019-08-02 09:58:02 +00:00
|
|
|
#ifndef _LOG_CONFIG_H
|
|
|
|
#define _LOG_CONFIG_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "rpc_types.h"
|
|
|
|
#include "rpc_common.h"
|
|
|
|
|
|
|
|
ret_code log_config_init();
|
|
|
|
ret_code log_console_config_chk(uint source, uint *config_type,
|
|
|
|
pointer input, int *input_len,
|
|
|
|
pointer output, int *output_len);
|
|
|
|
ret_code log_console_config_proc(uint source, uint config_type,
|
|
|
|
pointer input, int input_len,
|
|
|
|
pointer output, int *output_len);
|
2019-08-13 08:25:43 +00:00
|
|
|
ret_code log_monitor_config_chk(uint source, uint *config_type,
|
|
|
|
pointer input, int *input_len,
|
|
|
|
pointer output, int *output_len);
|
|
|
|
ret_code log_monitor_config_proc(uint source, uint config_type,
|
|
|
|
pointer input, int input_len,
|
|
|
|
pointer output, int *output_len);
|
2019-08-13 10:22:20 +00:00
|
|
|
ret_code log_remote_host_config_chk(uint source, uint *config_type,
|
2019-08-13 08:25:43 +00:00
|
|
|
pointer input, int *input_len,
|
|
|
|
pointer output, int *output_len);
|
2019-08-13 10:22:20 +00:00
|
|
|
ret_code log_remote_add_host_config_proc(uint source, uint config_type,
|
2019-08-13 08:25:43 +00:00
|
|
|
pointer input, int input_len,
|
|
|
|
pointer output, int *output_len);
|
2019-08-13 10:22:20 +00:00
|
|
|
ret_code log_remote_del_host_config_proc(uint source, uint config_type,
|
2019-08-13 08:25:43 +00:00
|
|
|
pointer input, int input_len,
|
|
|
|
pointer output, int *output_len);
|
2019-08-14 09:17:18 +00:00
|
|
|
ret_code log_remote_level_config_chk(uint source, uint *config_type,
|
|
|
|
pointer input, int *input_len,
|
|
|
|
pointer output, int *output_len);
|
|
|
|
ret_code log_remote_level_config_proc(uint source, uint config_type,
|
|
|
|
pointer input, int input_len,
|
|
|
|
pointer output, int *output_len);
|
|
|
|
ret_code log_file_config_chk(uint source, uint *config_type,
|
|
|
|
pointer input, int *input_len,
|
|
|
|
pointer output, int *output_len);
|
|
|
|
ret_code log_file_config_proc(uint source, uint config_type,
|
|
|
|
pointer input, int input_len,
|
|
|
|
pointer output, int *output_len);
|
2019-08-02 09:58:02 +00:00
|
|
|
|
|
|
|
#endif
|