-
Notifications
You must be signed in to change notification settings - Fork 9
/
rpc.h
40 lines (28 loc) · 854 Bytes
/
rpc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
class YAAMP_COIND;
struct YAAMP_RPC
{
YAAMP_COIND *coind;
int port;
char host[1024];
char credential[1024];
char cert[1024];
int ssl;
int curl;
int sock;
int id;
int bufpos;
char buffer[YAAMP_SMALLBUFSIZE];
pthread_mutex_t mutex;
void* CURL;
};
//////////////////////////////////////////////////////////////////////////
bool rpc_connected(YAAMP_RPC *rpc);
bool rpc_connect(YAAMP_RPC *rpc);
void rpc_close(YAAMP_RPC *rpc);
int rpc_send_raw(YAAMP_RPC *rpc, const char *buffer, int bytes);
int rpc_send(YAAMP_RPC *rpc, const char *format, ...);
int rpc_flush(YAAMP_RPC *rpc);
json_value *rpc_call(YAAMP_RPC *rpc, char const *method, char const *params=NULL);
json_value *rpc_curl_call(YAAMP_RPC *rpc, char const *method, char const *params);
void rpc_curl_get_lasterr(char* buffer, int buflen);
void rpc_curl_close(YAAMP_RPC *rpc);