3 * Copyright 2019 AT&T Intellectual Property
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
10 * http://www.apache.org/licenses/LICENSE-2.0
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.
23 // #include <iostream>
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
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");}
39 typedef struct SCTP_DATA {
45 unsigned char buffer[MAX_SCTP_BUFFER];
52 //... extend as needed
55 options_t read_input_options(int argc, char *argv[]);