summaryrefslogtreecommitdiffstats
path: root/src/rpc.h
blob: 7334cc91b2f1c99544e18bee01d6500436260737 (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 rpc_open( void );

void rpc_handle( int listenFd );

bool rpc_wait( int listenFd, int seconds );

bool rpc_send( const char *data );

#endif