blob: 5228afdb74a72a3534f5155ddba4b83f94287505 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef PROTOCOL_PRIVATE_H
#define PROTOCOL_PRIVATE_H
static int push_string(const char *str);
static int push_fpi1(const char *num);
static int push_timestamp(const char *data);
static int push_request(const char *data);
static int push_reply(const char *data);
static int push_uuid(const char *data);
#endif /* PROTOCOL_PRIVATE_H */
|