Golioth Firmware SDK
golioth_rpc.h File Reference
#include <zcbor_decode.h>
#include <zcbor_encode.h>
#include "golioth_status.h"
#include "golioth_client.h"
#include "golioth_config.h"

Go to the source code of this file.

Data Structures

struct  golioth_rpc_method_t
 Private struct to contain data about a single registered method. More...
 
struct  golioth_rpc_t
 

Typedefs

typedef golioth_rpc_status_t(* golioth_rpc_cb_fn) (zcbor_state_t *request_params_array, zcbor_state_t *response_detail_map, void *callback_arg)
 

Enumerations

enum  golioth_rpc_status_t {
  GOLIOTH_RPC_OK = 0 , GOLIOTH_RPC_CANCELED = 1 , GOLIOTH_RPC_UNKNOWN = 2 , GOLIOTH_RPC_INVALID_ARGUMENT = 3 ,
  GOLIOTH_RPC_DEADLINE_EXCEEDED = 4 , GOLIOTH_RPC_NOT_FOUND = 5 , GOLIOTH_RPC_ALREADYEXISTS = 6 , GOLIOTH_RPC_PERMISSION_DENIED = 7 ,
  GOLIOTH_RPC_RESOURCE_EXHAUSTED = 8 , GOLIOTH_RPC_FAILED_PRECONDITION = 9 , GOLIOTH_RPC_ABORTED = 10 , GOLIOTH_RPC_OUT_OF_RANGE = 11 ,
  GOLIOTH_RPC_UNIMPLEMENTED = 12 , GOLIOTH_RPC_INTERNAL = 13 , GOLIOTH_RPC_UNAVAILABLE = 14 , GOLIOTH_RPC_DATA_LOSS = 15 ,
  GOLIOTH_RPC_UNAUTHENTICATED = 16
}
 Enumeration of RPC status codes, sent in the RPC response. More...
 

Functions

golioth_status_t golioth_rpc_register (golioth_client_t client, const char *method, golioth_rpc_cb_fn callback, void *callback_arg)