diff options
Diffstat (limited to 'common/vnf_common/app.h')
-rw-r--r-- | common/vnf_common/app.h | 16 |
1 files changed, 16 insertions, 0 deletions
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, |