aboutsummaryrefslogblamecommitdiffstats
path: root/nbrpc_call.h
blob: 3d7ea9ab730326a77da516e57dde8930c62a6c02 (plain) (tree)
1
2
3
4
5
6
7
8
9






                           

                

                               
       

               

                


               
  



                                
       

               

                


               














                                                                                
#ifndef __AGNI_NBRPC_CALL_H
#define __AGNI_NBRPC_CALL_H

#include <netbytes.h>

#include <mq_ntf.h>

#include "mmm.h"

typedef struct rpc_call_request
{
  //rpc
  char *method;
  char *params;
  int id;
  //extra params
  char *user;
  char *mask;
  char *server;
  
} rpc_call_request;

typedef struct rpc_call_response
{
  //rpc
  char *result;
  char *error;
  int id;
  //extra params
  char *user;
  char *mask;
  char *server;
} rpc_call_response;

rpc_call_request*  rpc_call_req_new(char *method, char *params, int id);
rpc_call_response* rpc_call_resp_new(char *result, char *error, int id);

int rpc_call_req_free(rpc_call_request   *req);
int rpc_call_resp_free(rpc_call_response *resp);

int rpc_call_req_marsh(   rpc_call_request   *req,     netbyte_store **nb_req);
int rpc_call_resp_marsh(  rpc_call_response  *resp,    netbyte_store **nb_resp);

int rpc_call_req_unmarsh( netbyte_store *nb_req,  rpc_call_request   **req);
int rpc_call_resp_unmarsh(netbyte_store *nb_resp, rpc_call_response  **resp);

#endif