Adding Bouncer xapp and E2 Simulator code for RIC-Benchmarking
[it/test.git] / ric_benchmarking / e2-interface / e2sim / src / messagerouting / e2ap_message_handler.hpp
1 /*****************************************************************************
2 #                                                                            *
3 # Copyright 2019 AT&T Intellectual Property                                  *
4 # Copyright 2019 Nokia                                                       *
5 # Copyright (c) 2020 Samsung Electronics Co., Ltd. All Rights Reserved.      *
6 #                                                                            *
7 # Licensed under the Apache License, Version 2.0 (the "License");            *
8 # you may not use this file except in compliance with the License.           *
9 # You may obtain a copy of the License at                                    *
10 #                                                                            *
11 #      http://www.apache.org/licenses/LICENSE-2.0                            *
12 #                                                                            *
13 # Unless required by applicable law or agreed to in writing, software        *
14 # distributed under the License is distributed on an "AS IS" BASIS,          *
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   *
16 # See the License for the specific language governing permissions and        *
17 # limitations under the License.                                             *
18 #                                                                            *
19 ******************************************************************************/
20 #ifndef E2AP_MESSAGE_HANDLER_HPP
21 #define E2AP_MESSAGE_HANDLER_HPP
22
23 #include "e2sim.hpp"
24 #include "e2sim_sctp.hpp"
25
26
27 extern "C" {
28   #include "e2sim_defs.h"
29   #include "e2ap_asn1c_codec.h"
30 }
31
32 void e2ap_handle_sctp_data(int &socket_fd, sctp_buffer_t &data, bool xmlenc, E2Sim *e2sim);
33
34 void e2ap_handle_X2SetupRequest(E2AP_PDU_t* pdu, int &socket_fd);
35
36 void e2ap_handle_X2SetupResponse(E2AP_PDU_t* pdu, int &socket_fd);
37
38 void e2ap_handle_ENDCX2SetupRequest(E2AP_PDU_t* pdu, int &socket_fd);
39
40 void e2ap_handle_E2SetupRequest(E2AP_PDU_t* pdu, int &socket_fd);
41
42 void e2ap_handle_RICSubscriptionRequest(E2AP_PDU_t* pdu, int &socket_fd);
43
44 void e2ap_handle_RICSubscriptionRequest_securityDemo(E2AP_PDU_t* pdu, int &socket_fd);
45
46 void e2ap_handle_ResourceStatusRequest(E2AP_PDU_t* pdu, int &socket_fd);
47
48 void e2ap_handle_E2SeviceRequest(E2AP_PDU_t* pdu, int &socket_fd, E2Sim *e2sim);
49
50 #endif