summaryrefslogtreecommitdiff
path: root/daemon
diff options
context:
space:
mode:
Diffstat (limited to 'daemon')
-rw-r--r--daemon/src/daemon.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/daemon/src/daemon.cpp b/daemon/src/daemon.cpp
index feb6570..352218d 100644
--- a/daemon/src/daemon.cpp
+++ b/daemon/src/daemon.cpp
@@ -9,5 +9,12 @@ int main(int, char **)
server.bind("stop_server", []{
rpc::this_server().stop();
});
+ int value = 0;
+ server.bind("set_value", [&value](int a){
+ value = a;
+ });
+ server.bind("get_value", [&value](){
+ return value;
+ });
server.run();
}