From c65d2e761955affbdb76fc31ebb188ac492c31ca Mon Sep 17 00:00:00 2001 From: Vishwesh M Rudramuni Date: Mon, 25 Sep 2017 03:36:02 +0530 Subject: REST_API: rest api client implementation JIRA: SAMPLEVNF-78 This patch implements rest api's for VNF clients. This comprises of * vnf api's for common functionality * vnf api's for CGNAPT * vnf api's for VFW Change-Id: I56d22c64bf3ee5b0a2e536da8169ac7583499041 Signed-off-by: Vishwesh M Rudramuni --- common/vnf_common/app.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'common/vnf_common/app.h') diff --git a/common/vnf_common/app.h b/common/vnf_common/app.h index 51c40c97..752780d9 100644 --- a/common/vnf_common/app.h +++ b/common/vnf_common/app.h @@ -566,6 +566,17 @@ do { \ fprintf(stdout, "[APP] " fmt "\n", ## __VA_ARGS__); \ } while (0) +#ifdef REST_API_SUPPORT +static inline int rest_api_supported(void) +{ + return 1; +} +#else +static inline int rest_api_supported(void) +{ + return 0; +} +#endif static inline uint32_t app_link_get_n_rxq(struct app_params *app, struct app_link_params *link) { @@ -955,6 +966,11 @@ int app_config_check(struct app_params *app); int app_init(struct app_params *app); +struct mg_context *rest_api_init(struct app_params *app); +void set_vnf_type(const char *type); +uint32_t is_rest_support(void); +extern uint32_t rest_support; + int app_thread(void *arg); int app_pipeline_type_register(struct app_params *app, -- cgit 1.2.3-korg