Enhanced SIM for E2AP v1 for TS UC
[sim/e2-interface.git] / e2sim / e2apv1sim / 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     10000
33 #define WORKDIR_ENV         "E2SIM_DIR" //environment variable
34
35 char* time_stamp(void);
36
37 // #define LOG_I(...) {printf("[%s]", time_stamp()); printf(__VA_ARGS__); printf("\n");}
38 // #define LOG_E(...) {printf("[%s]", time_stamp()); printf(__VA_ARGS__); printf("\n");}
39 // #define LOG_D(...) {printf("[%s]", time_stamp()); printf(__VA_ARGS__); printf("\n");}
40
41 #define LOG_I(...) {printf(__VA_ARGS__); printf("\n");}
42 #define LOG_E(...) {printf(__VA_ARGS__); printf("\n");}
43 #define LOG_D(...) {printf(__VA_ARGS__); printf("\n");}
44
45 typedef struct SCTP_DATA {
46   unsigned char *data;
47   int           len;
48 } sctp_data_t;
49
50 typedef struct {
51   unsigned char buffer[MAX_SCTP_BUFFER];
52   int           len;
53 } sctp_buffer_t;
54
55 typedef struct {
56   char* server_ip;
57   int   server_port;
58   //... extend as needed
59 } options_t;
60
61 options_t read_input_options(int argc, char *argv[]);
62
63 #define min(a, b) ((a) < (b)) ? (a) : (b)
64
65 #endif