Extend copyright
[project/rpcd.git] / include / rpcd / uci.h
index a4f79e26ef6726a6baf89594a487292fd4748363..818036f36c1aefc34bd15fd542118b2e12fb3c3c 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * rpcd - UBUS RPC server
  *
- *   Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
+ *   Copyright (C) 2013-2014 Jo-Philipp Wich <jow@openwrt.org>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
 #include <libubus.h>
 #include <uci.h>
 
+#define RPC_UCI_DIR_PREFIX     "/var/run/rpcd"
+#define RPC_UCI_SAVEDIR_PREFIX RPC_UCI_DIR_PREFIX "/uci-"
+#define RPC_SNAPSHOT_FILES     RPC_UCI_DIR_PREFIX "/snapshot-files/"
+#define RPC_SNAPSHOT_DELTA     RPC_UCI_DIR_PREFIX "/snapshot-delta/"
+#define RPC_UCI_DIR            "/etc/config/"
+#define RPC_APPLY_TIMEOUT      60
+
 int rpc_uci_api_init(struct ubus_context *ctx);
 
+void rpc_uci_purge_savedirs(void);
+
 #endif