uci: use per-session save directory and register session destroy callback to purge...
[project/rpcd.git] / plugin.h
index 6064b68..6b3d244 100644 (file)
--- a/plugin.h
+++ b/plugin.h
@@ -1,5 +1,5 @@
 /*
- * luci-rpcd - LuCI UBUS RPC server
+ * rpcd - UBUS RPC server
  *
  *   Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
  *
 #include "session.h"
 
 /* location of plugin executables */
-#define RPC_PLUGIN_DIRECTORY        "/usr/libexec/luci-rpcd"
+#define RPC_PLUGIN_DIRECTORY        "/usr/libexec/rpcd"
 
 /* location of plugin libraries */
-#define RPC_LIBRARY_DIRECTORY       "/usr/lib/luci-rpcd"
+#define RPC_LIBRARY_DIRECTORY       "/usr/lib/rpcd"
 
 struct rpc_daemon_ops {
-    bool (*access)(const char *sid, const char *scope,
-                   const char *object, const char *function);
+    bool (*session_access)(const char *sid, const char *scope,
+                           const char *object, const char *function);
+    void (*session_create_cb)(struct rpc_session_cb *cb);
+    void (*session_destroy_cb)(struct rpc_session_cb *cb);
     int (*exec)(const char **args,
                 rpc_exec_write_cb_t in, rpc_exec_read_cb_t out,
                 rpc_exec_read_cb_t err, rpc_exec_done_cb_t end,