return 1;
}
+static int
+uci_lua_get_confdir(lua_State *L)
+{
+ lua_pushstring(L, ctx->confdir);
+ return 1;
+}
+
static int
uci_lua_set_confdir(lua_State *L)
{
return 1;
}
+static int
+uci_lua_get_savedir(lua_State *L)
+{
+ lua_pushstring(L, ctx->savedir);
+ return 1;
+}
+
static int
uci_lua_set_savedir(lua_State *L)
{
{ "revert", uci_lua_revert },
{ "changes", uci_lua_changes },
{ "foreach", uci_lua_foreach },
+ { "get_confdir", uci_lua_get_confdir },
{ "set_confdir", uci_lua_set_confdir },
+ { "get_savedir", uci_lua_get_savedir },
{ "set_savedir", uci_lua_set_savedir },
{ NULL, NULL },
};