build: honour CMake install prefix in hardcoded paths
[project/rpcd.git] / include / rpcd / plugin.h
index 8a1178d6594a087943c365b6d5e686a68291d527..b795f0ee355498ebd8f9ca3d0295fc8280ddbf4b 100644 (file)
 #include <rpcd/session.h>
 
 /* location of plugin executables */
-#define RPC_PLUGIN_DIRECTORY   "/usr/libexec/rpcd"
+#define RPC_PLUGIN_DIRECTORY   INSTALL_PREFIX "/libexec/rpcd"
 
 /* location of plugin libraries */
-#define RPC_LIBRARY_DIRECTORY  "/usr/lib/rpcd"
+#define RPC_LIBRARY_DIRECTORY  INSTALL_PREFIX "/lib/rpcd"
 
 struct rpc_daemon_ops {
     bool (*session_access)(const char *sid, const char *scope,
@@ -54,6 +54,7 @@ struct rpc_daemon_ops {
                 rpc_exec_read_cb_t err, rpc_exec_done_cb_t end,
                 void *priv, struct ubus_context *ctx,
                 struct ubus_request_data *req);
+    int *exec_timeout;
 };
 
 struct rpc_plugin {