31 lines
713 B
C
31 lines
713 B
C
|
#include "ike_config.h"
|
||
|
|
||
|
#include "lswalloc.h"
|
||
|
|
||
|
#include <ipsecconf/confread.h>
|
||
|
#include <deltatime.h>
|
||
|
|
||
|
ret_code ike_config_chk(uint source, uint *config_type,
|
||
|
pointer input, int *input_len,
|
||
|
pointer output, int *output_len)
|
||
|
{
|
||
|
return RET_OK;
|
||
|
}
|
||
|
|
||
|
ret_code ike_config_proc(uint source, uint config_type,
|
||
|
pointer input, int input_len,
|
||
|
pointer output, int *output_len)
|
||
|
{
|
||
|
|
||
|
ipsecconf_default_values(NULL);
|
||
|
/*
|
||
|
resolve_defaultroute(conn);
|
||
|
starter_whack_add_conn(cfg, conn);
|
||
|
starter_whack_listen(cfg);
|
||
|
starter_whack_route_conn(cfg, conn);
|
||
|
*/
|
||
|
|
||
|
return RET_OK;
|
||
|
}
|
||
|
|