diff options
Diffstat (limited to 'src/json_rpc.h')
-rw-r--r-- | src/json_rpc.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/json_rpc.h b/src/json_rpc.h index 6e2be04..f3c67a9 100644 --- a/src/json_rpc.h +++ b/src/json_rpc.h @@ -24,9 +24,6 @@ int jsonrpc_notification_create(struct jsonrpc_request **, const char *method, struct json_object *params); int jsonrpc_request_is_notification(const struct jsonrpc_request *); -const char *jsonrpc_request_to_string(struct jsonrpc_request *); -int jsonrpc_request_parse(struct jsonrpc_request **, const char *src); - int jsonrpc_request_send(const struct jsonrpc_request *, int fd); int jsonrpc_request_recv(struct jsonrpc_request **, int fd); @@ -48,9 +45,6 @@ int jsonrpc_error_create(struct jsonrpc_response **, struct jsonrpc_request *, i const char *message); int jsonrpc_response_is_error(const struct jsonrpc_response *); -const char *jsonrpc_response_to_string(struct jsonrpc_response *); -int jsonrpc_response_parse(struct jsonrpc_response **, const char *src); - int jsonrpc_response_send(const struct jsonrpc_response *, int fd); int jsonrpc_response_recv(struct jsonrpc_response **, int fd); |