summaryrefslogtreecommitdiffstats
path: root/src/rpc.h
blob: 42851ac6a86d4648f6f21f72f4a32b263f6cf00c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _RPC_H__
#define _RPC_H__

#include <stdbool.h>

int rpcOpen( void );

void rpcHandle( int listenFd );

void rpcWait( int listenFd, int seconds );

bool rpc_send( const char *data );

#endif