Adding Sample vCGNAPT config to run with multi-port pair
[samplevnf.git] / VNFs / vCGNAPT / main.c
1 /*
2 // Copyright (c) 2017 Intel Corporation
3 //
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
7 //
8 //      http://www.apache.org/licenses/LICENSE-2.0
9 //
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.
15 */
16
17 #include "app.h"
18
19 static struct app_params app;
20
21 int
22 main(int argc, char **argv)
23 {
24         rte_openlog_stream(stderr);
25
26         /* Config */
27         app_config_init(&app);
28
29         app_config_args(&app, argc, argv);
30
31         app_config_preproc(&app);
32
33         app_config_parse(&app, app.parser_file);
34
35         app_config_check(&app);
36
37         /* Timer subsystem init*/
38         rte_timer_subsystem_init();
39
40         /* Init */
41         app_init(&app);
42
43         /* Run-time */
44         rte_eal_mp_remote_launch(
45                 app_thread,
46                 (void *) &app,
47                 CALL_MASTER);
48
49         return 0;
50 }