1 /*****************************************************************************
3 # Copyright 2019 AT&T Intellectual Property *
4 # Copyright 2019 Nokia *
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. *
18 ******************************************************************************/
26 #include "e2sim_defs.h"
27 #include "e2sim_sctp.hpp"
28 #include "e2ap_message_handler.hpp"
32 int main(int argc, char* argv[]){
33 LOG_I("Start E2 Agent (E2 Simulator)");
35 options_t ops = read_input_options(argc, argv);
37 //E2 Agent will automatically restart upon sctp disconnection
38 int server_fd = sctp_start_server(ops.server_ip, ops.server_port);
39 int client_fd = sctp_accept_connection(ops.server_ip, server_fd);
41 sctp_buffer_t recv_buf;
43 LOG_I("[SCTP] Waiting for SCTP data");
45 while(1) //constantly looking for data on SCTP interface
47 if(sctp_receive_data(client_fd, recv_buf) <= 0)
50 LOG_I("[SCTP] Received new data of size %d", recv_buf.len);
52 e2ap_handle_sctp_data(client_fd, recv_buf);