2019-10-15 08:45:30 +00:00
|
|
|
#ifndef _IKE_CONFIG_H
|
|
|
|
#define _IKE_CONFIG_H
|
|
|
|
|
2019-10-17 02:01:15 +00:00
|
|
|
#include <stdio.h>
|
2019-10-15 08:45:30 +00:00
|
|
|
|
|
|
|
#include "rpc_types.h"
|
|
|
|
#include "rpc_common.h"
|
|
|
|
|
|
|
|
ret_code ike_config_chk(uint source, uint *config_type,
|
|
|
|
pointer input, int *input_len,
|
|
|
|
pointer output, int *output_len);
|
|
|
|
ret_code ike_config_proc(uint source, uint config_type,
|
|
|
|
pointer input, int input_len,
|
|
|
|
pointer output, int *output_len);
|
|
|
|
|
|
|
|
#endif
|