Adding Bouncer xapp and E2 Simulator code for RIC-Benchmarking
[it/test.git] / ric_benchmarking / e2-interface / e2sim / previous / e2apv1sim / e2sim / src / E2AP / e2ap_message_handler.hpp
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 #ifndef E2AP_MESSAGE_HANDLER_HPP
20 #define E2AP_MESSAGE_HANDLER_HPP
21
22 #include "e2sim.hpp"
23 #include "e2sim_sctp.hpp"
24
25
26 extern "C" {
27   #include "e2sim_defs.h"
28   #include "e2ap_asn1c_codec.h"
29 }
30
31 void e2ap_handle_sctp_data(int &socket_fd, sctp_buffer_t &data, bool xmlenc, E2Sim *e2sim);
32
33 void e2ap_handle_X2SetupRequest(E2AP_PDU_t* pdu, int &socket_fd);
34
35 void e2ap_handle_X2SetupResponse(E2AP_PDU_t* pdu, int &socket_fd);
36
37 void e2ap_handle_ENDCX2SetupRequest(E2AP_PDU_t* pdu, int &socket_fd);
38
39 void e2ap_handle_E2SetupRequest(E2AP_PDU_t* pdu, int &socket_fd);
40
41 void e2ap_handle_RICSubscriptionRequest(E2AP_PDU_t* pdu, int &socket_fd);
42
43 void e2ap_handle_RICSubscriptionRequest_securityDemo(E2AP_PDU_t* pdu, int &socket_fd);
44
45 void e2ap_handle_ResourceStatusRequest(E2AP_PDU_t* pdu, int &socket_fd);
46
47 #endif