X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=include%2Fafb-req-itf.h;h=111b1d5321ee0791276a245715ccb775933c9395;hb=6b9b3b16ac738f99bddde3d7d375f9986bb1c09a;hp=d4ade2be7da4429e7bcbb998a7731774daca4a93;hpb=34acb0f8d191593c9761e027424f13ae42831133;p=src%2Fapp-framework-binder.git diff --git a/include/afb-req-itf.h b/include/afb-req-itf.h index d4ade2be..111b1d53 100644 --- a/include/afb-req-itf.h +++ b/include/afb-req-itf.h @@ -31,7 +31,7 @@ struct afb_req_itf { void (*success)(void *req_closure, struct json_object *obj, const char *info); void (*fail)(void *req_closure, const char *status, const char *info); const char *(*raw)(void *req_closure, size_t *size); - void (*send)(void *req_closure, char *buffer, size_t size); + void (*send)(void *req_closure, const char *buffer, size_t size); void *(*context_get)(void *ctx_closure); void (*context_set)(void *ctx_closure, void *context, void (*free_context)(void*)); int (*session_create)(void *req_closure); @@ -44,6 +44,7 @@ struct afb_req { void *req_closure; void *ctx_closure; }; + static inline struct afb_arg afb_req_get(struct afb_req req, const char *name) { return req.itf->get(req.req_closure, name); @@ -79,7 +80,7 @@ static inline const char *afb_req_raw(struct afb_req req, size_t *size) return req.itf->raw(req.req_closure, size); } -static inline void afb_req_send(struct afb_req req, char *buffer, size_t size) +static inline void afb_req_send(struct afb_req req, const char *buffer, size_t size) { req.itf->send(req.req_closure, buffer, size); }