* Fixed issue https://github.com/clicon/clixon/issues/18 RPC response issues reported by Stephen Jones at Netgate

This commit is contained in:
Olof hagsand 2018-04-22 16:53:12 +02:00
parent 67c0abead7
commit 3ed1c98556
11 changed files with 215 additions and 113 deletions

View file

@ -87,7 +87,6 @@ nacm_statedata(clicon_handle h,
return retval;
}
int
plugin_start(clicon_handle h,
int argc,
@ -103,8 +102,8 @@ static clixon_plugin_api api = {
clixon_plugin_init, /* init */
plugin_start, /* start */
NULL, /* exit */
.ca_reset=NULL, /* reset */ /*--- Backend plugin only ---*/
.ca_statedata=nacm_statedata, /* statedata */
.ca_reset=NULL, /* reset */
.ca_statedata=nacm_statedata, /* statedata */
};
/*! Backend plugin initialization
@ -115,6 +114,6 @@ static clixon_plugin_api api = {
clixon_plugin_api *
clixon_plugin_init(clicon_handle h)
{
clicon_debug(1, "%s backend secondary", __FUNCTION__);
clicon_debug(1, "%s backend nacm", __FUNCTION__);
return &api;
}