2 // Copyright (c) 2017 Intel Corporation
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
8 // http://www.apache.org/licenses/LICENSE-2.0
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
20 static struct app_params app;
21 extern void rest_api_vfw_init(struct mg_context *ctx, struct app_params *app);
24 main(int argc, char **argv)
26 struct mg_context *ctx = NULL;
27 rte_openlog_stream(stderr);
30 app_config_init(&app);
32 app_config_args(&app, argc, argv);
34 if (is_rest_support()) {
35 /* initialize the rest api */
37 ctx = rest_api_init(&app);
40 app_config_preproc(&app);
42 app_config_parse(&app, app.parser_file);
44 app_config_check(&app);
46 /* Timer subsystem init*/
47 rte_timer_subsystem_init();
52 if (is_rest_support() && (ctx != NULL)) {
53 /* rest api's for cgnapt */
54 rest_api_vfw_init(ctx, &app);
58 rte_eal_mp_remote_launch(
63 if (is_rest_support() && (ctx != NULL)) {
65 printf("Civet server stopped.\n");