Reorganize directories and switch libaries to using asn1c
[it/test.git] / simulators / e2sim / e2sim.cpp
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 #include <stdio.h>
21 #include <unistd.h>
22 #include <string>
23 #include <iostream>
24
25 #include "e2sim_defs.h"
26 #include "e2sim_sctp.hpp"
27 #include "e2ap_message_handler.hpp"
28
29 using namespace std;
30
31 int main(int argc, char* argv[]){
32   LOG_I("Start E2 Agent (E2 Simulator)");
33
34   options_t ops = read_input_options(argc, argv);
35
36   int server_fd = sctp_start_server(ops.server_ip, ops.server_port);
37   int client_fd = sctp_accept_connection(ops.server_ip, server_fd);
38
39   sctp_buffer_t recv_buf;
40
41   LOG_I("[SCTP] Waiting for SCTP data");
42
43   while(1) //constantly looking for data on SCTP interface
44   {
45     if(sctp_receive_data(client_fd, recv_buf) <= 0)
46       break;
47
48     LOG_I("[SCTP] Received new data of size %d", recv_buf.len);
49
50     e2ap_handle_sctp_data(client_fd, recv_buf);
51   }
52
53   return 0;
54 }