blob: 9511cd0ca0480ef8af262eeca2bf0aa11b2eee1c (
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 );
void rpc_wait( int listenFd, int seconds );
bool rpc_send( const char *data );
#endif
|