Rename from "luci-rpcd" to "rpcd"
authorJo-Philipp Wich <jow@openwrt.org>
Mon, 2 Sep 2013 15:09:57 +0000 (17:09 +0200)
committerJo-Philipp Wich <jow@openwrt.org>
Mon, 2 Sep 2013 15:23:30 +0000 (17:23 +0200)
16 files changed:
CMakeLists.txt
exec.c
exec.h
file.c
file.h
iwinfo.c
iwinfo.h
luci2.c
luci2.h
main.c
plugin.c
plugin.h
session.c
session.h
uci.c
uci.h

index 6f42902eb53e9269f2b12d976ac32cd6bca10f16..f448a72d93a8ca67777f7c9732e9a9d0a7958236 100644 (file)
@@ -1,6 +1,6 @@
 cmake_minimum_required(VERSION 2.6)
 
-PROJECT(luci-rpcd C)
+PROJECT(rpcd C)
 ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -g3 -Wmissing-declarations)
 
 OPTION(FILE_SUPPORT "File plugin support" ON)
@@ -16,8 +16,8 @@ ENDIF()
 
 FIND_LIBRARY(json NAMES json-c json)
 
-ADD_EXECUTABLE(luci-rpcd main.c exec.c session.c uci.c plugin.c)
-TARGET_LINK_LIBRARIES(luci-rpcd ubox ubus uci dl blobmsg_json ${json})
+ADD_EXECUTABLE(rpcd main.c exec.c session.c uci.c plugin.c)
+TARGET_LINK_LIBRARIES(rpcd ubox ubus uci dl blobmsg_json ${json})
 
 SET(PLUGINS "")
 
@@ -42,7 +42,7 @@ IF (IWINFO_SUPPORT)
   SET_TARGET_PROPERTIES(iwinfo_plugin PROPERTIES OUTPUT_NAME iwinfo PREFIX "")
 ENDIF()
 
-INSTALL(TARGETS luci-rpcd ${PLUGINS}
+INSTALL(TARGETS rpcd ${PLUGINS}
        RUNTIME DESTINATION sbin
        LIBRARY DESTINATION lib
 )
diff --git a/exec.c b/exec.c
index 944ade41a9d205b239c5ffdd8d5f2e78cdde18ec..c03e450a6cd46db22c8b7cdc4f0f6a719fec8fb3 100644 (file)
--- a/exec.c
+++ b/exec.c
@@ -1,5 +1,5 @@
 /*
- * luci-rpcd - LuCI UBUS RPC server
+ * rpcd - UBUS RPC server
  *
  *   Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
  *
diff --git a/exec.h b/exec.h
index 8642c0ba9ed3e693021e93e02876ee94fdff436a..05ba3caaf2ed86936847b1633fb486f9e6bcdfd3 100644 (file)
--- a/exec.h
+++ b/exec.h
@@ -1,5 +1,5 @@
 /*
- * luci-rpcd - LuCI UBUS RPC server
+ * rpcd - UBUS RPC server
  *
  *   Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
  *
diff --git a/file.c b/file.c
index 2d3327288c1f465742e86c5bca6931683580e71b..0e8df4f116170950475621681036176ff6aa77fd 100644 (file)
--- a/file.c
+++ b/file.c
@@ -1,5 +1,5 @@
 /*
- * luci-rpcd - LuCI UBUS RPC server
+ * rpcd - UBUS RPC server
  *
  *   Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
  *
diff --git a/file.h b/file.h
index 870e26718c0182d7e2063e03d28a9f74829ca4d1..0cd2592e5cc420e51b76115c5488588378c9d9b8 100644 (file)
--- a/file.h
+++ b/file.h
@@ -1,5 +1,5 @@
 /*
- * luci-rpcd - LuCI UBUS RPC server
+ * rpcd - UBUS RPC server
  *
  *   Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
  *
index 893da01adc428aa35aa26ad57b7b91b1a6993b75..b78a335ce7b30a744425348355c1e8fcc92c2a9d 100644 (file)
--- a/iwinfo.c
+++ b/iwinfo.c
@@ -1,5 +1,5 @@
 /*
- * luci-rpcd - LuCI UBUS RPC server
+ * rpcd - UBUS RPC server
  *
  *   Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
  *
index bc1a8bb01b49f0be4ed7fbdaa4db65226afe36af..29ecf9f394406f91838a1cd5b8e34d19028ddfda 100644 (file)
--- a/iwinfo.h
+++ b/iwinfo.h
@@ -1,5 +1,5 @@
 /*
- * luci-rpcd - LuCI UBUS RPC server
+ * rpcd - UBUS RPC server
  *
  *   Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
  *
diff --git a/luci2.c b/luci2.c
index bb68a4b2b7ea8da0c5c61c3f72680da11689a702..27eead5eec430ad0dab3221316e2f5b2fff551f8 100644 (file)
--- a/luci2.c
+++ b/luci2.c
@@ -1,5 +1,5 @@
 /*
- * luci-rpcd - LuCI UBUS RPC server
+ * rpcd - UBUS RPC server
  *
  *   Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
  *
diff --git a/luci2.h b/luci2.h
index 480c97354d274faa053014570146d3217412f3f3..41c832158511f951ecf437663fb95d3580694478 100644 (file)
--- a/luci2.h
+++ b/luci2.h
@@ -1,5 +1,5 @@
 /*
- * luci-rpcd - LuCI UBUS RPC server
+ * rpcd - UBUS RPC server
  *
  *   Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
  *
diff --git a/main.c b/main.c
index 5f5c17ffef2fc848cd92515a8ea4335d82c6972d..efaa114aded0f8aa6d9fab6852f56fc5fd7316a5 100644 (file)
--- a/main.c
+++ b/main.c
@@ -1,5 +1,5 @@
 /*
- * luci-rpcd - LuCI UBUS RPC server
+ * rpcd - UBUS RPC server
  *
  *   Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
  *   Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
index 56260e25120b4e01331ba2584e3a717583b7cfb5..33266b34b4553cb97b459adfcc7398d394254a13 100644 (file)
--- a/plugin.c
+++ b/plugin.c
@@ -1,5 +1,5 @@
 /*
- * luci-rpcd - LuCI UBUS RPC server
+ * rpcd - UBUS RPC server
  *
  *   Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
  *
index 6064b68530c1cf737546ab3c8732c2246121bed8..0d10f093a50fc711ba4673ce3ae97fe527cbd5ac 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,
index b43e7638fff193bbe499da802a235977cfcd51f1..d970d45b139d2c3614bc9d8cd5917c1ce4b7e3e0 100644 (file)
--- a/session.c
+++ b/session.c
@@ -1,5 +1,5 @@
 /*
- * luci-rpcd - LuCI UBUS RPC server
+ * rpcd - UBUS RPC server
  *
  *   Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
  *   Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
index 3f50e779f23bc98ab6a5da112b6af95c19e8943b..bcdcb96adedd6c65e4ae86983b2b97208a72ffe8 100644 (file)
--- a/session.h
+++ b/session.h
@@ -1,5 +1,5 @@
 /*
- * luci-rpcd - LuCI UBUS RPC server
+ * rpcd - UBUS RPC server
  *
  *   Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
  *   Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
diff --git a/uci.c b/uci.c
index ac97cbdd4231a74805768f6b98594673bea7a5d4..aba897ee330b43494826097a5d6e73998c6ced0f 100644 (file)
--- a/uci.c
+++ b/uci.c
@@ -1,5 +1,5 @@
 /*
- * luci-rpcd - LuCI UBUS RPC server
+ * rpcd - UBUS RPC server
  *
  *   Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
  *
diff --git a/uci.h b/uci.h
index cf0faa18f0a7ae986b043b093e309f4dbf301d2d..aa1e79707e03f3d054234db2db19b1dd60642442 100644 (file)
--- a/uci.h
+++ b/uci.h
@@ -1,5 +1,5 @@
 /*
- * luci-rpcd - LuCI UBUS RPC server
+ * rpcd - UBUS RPC server
  *
  *   Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
  *