74bf6198f976541e4cc2f83c5a01afbd06346e6f
[it/test.git] / simulators / e2sim / src / DEF / 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 #include <stdio.h>
25 #include <stdlib.h>
26
27 #define VERSION             "1.2.0"      //May 2019
28 #define DEFAULT_SCTP_IP     "127.0.0.1"
29 #define X2AP_PPID           (452984832) //27 = 1b, PPID = 1b000000(hex) -> 452984832(dec)
30 #define X2AP_SCTP_PORT      36421
31 #define RIC_SCTP_SRC_PORT   36422
32 #define MAX_SCTP_BUFFER     1024
33 #define WORKDIR_ENV         "E2SIM_DIR" //environment variable
34
35 #define LOG_I(...) {printf(__VA_ARGS__); printf("\n");}
36 #define LOG_E(...) {printf(__VA_ARGS__); printf("\n");}
37 #define LOG_D(...) {printf(__VA_ARGS__); printf("\n");}
38
39 typedef struct SCTP_DATA {
40   unsigned char *data;
41   int           len;
42 } sctp_data_t;
43
44 typedef struct {
45   unsigned char buffer[MAX_SCTP_BUFFER];
46   int           len;
47 } sctp_buffer_t;
48
49 typedef struct {
50   char* server_ip;
51   int   server_port;
52   //... extend as needed
53 } options_t;
54
55 options_t read_input_options(int argc, char *argv[]);
56
57 #endif