diff options
author | Marcel Saegebarth <marc@mos6581.de> | 2015-02-06 20:39:39 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-02-07 04:59:38 +0700 |
commit | 7bc45f8c7e0d2dd4c240d7a66ad4ffa2cde0ccb5 (patch) | |
tree | c45de4f6f1763f53ed16633567da749706cfa0af /libraries/libsearpc/README | |
parent | fdec5f2d1870e2f8f8a598500125a829ded2157a (diff) | |
download | slackbuilds-7bc45f8c7e0d2dd4c240d7a66ad4ffa2cde0ccb5.tar.gz |
libraries/libsearpc: Added (C RPC Framework).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/libsearpc/README')
-rw-r--r-- | libraries/libsearpc/README | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libraries/libsearpc/README b/libraries/libsearpc/README new file mode 100644 index 0000000000..453a3bdfb0 --- /dev/null +++ b/libraries/libsearpc/README @@ -0,0 +1,8 @@ +Searpc is a simple C language RPC framework based on GObject system. +Searpc handles the serialization/deserialization part of RPC, the +transport part is left to users. + +The serialization/deserialization uses JSON format via json-glib +library. A serialized json object is returned from server to client +after executing the RPC function. Each RPC function defined in the +server side should take an extra GError argument to report error. |