summaryrefslogtreecommitdiffstats
path: root/src/rpc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/rpc.h')
-rw-r--r--src/rpc.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/rpc.h b/src/rpc.h
index 08e08cd..e6fb353 100644
--- a/src/rpc.h
+++ b/src/rpc.h
@@ -1,10 +1,14 @@
#ifndef _RPC_H__
#define _RPC_H__
+#include <stdbool.h>
+
int rpcOpen();
void rpcHandle( int listenFd );
void rpcWait( int listenFd, int seconds );
+bool rpc_send( const char *data );
+
#endif