Added code for MAC-PHY interface, DU_APP, F1AP, SCTP and CU stub
[o-du/l2.git] / src / cu_app / cu_sctp.h
1 /*******************************************************************************
2 ################################################################################
3 #   Copyright (c) [2017-2019] [Radisys]                                        #
4 #                                                                              #
5 #   Licensed under the Apache License, Version 2.0 (the "License");            #
6 #   you may not use this file except in compliance with the License.           #
7 #   You may obtain a copy of the License at                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
11 #   Unless required by applicable law or agreed to in writing, software        #
12 #   distributed under the License is distributed on an "AS IS" BASIS,          #
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
14 #   See the License for the specific language governing permissions and        #
15 #   limitations under the License.                                             #
16 ################################################################################
17 *******************************************************************************/
18
19 /* This file contains all SCTP related functionality */
20
21 #ifndef __CU_SCTP_H__
22 #define __CU_SCTP_H__
23
24 #include <netinet/in.h>
25 #include <netinet/sctp.h>
26 #include "cu_mgr_main.h"
27
28 EXTERN S16 sctpActvInit(Ent entity, Inst inst, Region region, Reason reason);
29 EXTERN S16 sctpActvTsk(Pst *pst, Buffer *mBuf);
30 EXTERN void sctpStartReq();
31 EXTERN S16 sctpOutMsgSend(char *message, U8 msglen);
32
33 #define REALLY_BIG 65536
34
35 /* Convenience structure to determine space needed for cmsg. */
36 typedef union 
37 {
38    struct sctp_initmsg init;
39    struct sctp_sndrcvinfo sndrcvinfo;
40 }_sctp_cmsg_data_t;
41
42 #define CMSG_SPACE_INITMSG (CMSG_SPACE(sizeof(struct sctp_initmsg)))
43 #define CMSG_SPACE_SNDRCV (CMSG_SPACE(sizeof(struct sctp_sndrcvinfo)))
44
45 typedef union 
46 {
47    struct sockaddr_storage ss;
48    struct sockaddr_in v4;
49    struct sockaddr_in6 v6;
50    struct sockaddr sa;
51 } sockaddr_storage_t;
52
53 #endif
54
55 /**********************************************************************
56          End of file
57  **********************************************************************/