30a016556cdb92ece9a35c8284174b86ced62ed0
[it/test.git] / simulators / e2sim / src / e2sim_defs.h
1 /*
2  *
3  * Copyright 2019 AT&T Intellectual Property
4  * Copyright 2019 Nokia
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20 #ifndef E2SIM_DEFS_H
21 #define E2SIM_DEFS_H
22
23 #include <iostream>
24
25 #define VERSION             "1.2.0"      //May 2019
26 #define DEFAULT_SCTP_IP     "127.0.0.1"
27 #define X2AP_SCTP_PORT       36422
28 #define MAX_SCTP_BUFFER      1024
29 #define WORKDIR_ENV         "E2SIM_DIR" //environment variable
30
31 #define LOG_I(...) {printf(__VA_ARGS__); printf("\n");}
32 #define LOG_E(...) {printf(__VA_ARGS__); printf("\n");}
33 #define LOG_D(...) {printf(__VA_ARGS__); printf("\n");}
34
35 typedef struct SCTP_DATA {
36   unsigned char *data;
37   int           len;
38 } sctp_data_t;
39
40 typedef struct {
41   unsigned char buffer[MAX_SCTP_BUFFER];
42   int           len;
43 } sctp_buffer_t;
44
45 typedef struct {
46   char* server_ip;
47   int   server_port;
48   //... extend as needed
49 } options_t;
50
51 options_t read_input_options(int argc, char *argv[]);
52
53 #endif