Added code for MAC-PHY interface, DU_APP, F1AP, SCTP and CU stub
[o-du/l2.git] / src / du_app / du_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 __DU_SCTP_H__
22 #define __DU_SCTP_H__
23
24 #include <netinet/in.h>
25 #include <netinet/sctp.h>
26 #include "du_mgr.h"
27
28 S16 sctpActvInit(Ent entity, Inst inst, Region region, Reason reason);
29 S16 sctpActvTsk(Pst *pst, Buffer *mBuf);
30
31 #define REALLY_BIG 65536
32
33 /* Convenience structure to determine space needed for cmsg. */
34 typedef union 
35 {
36    struct sctp_initmsg init;
37    struct sctp_sndrcvinfo sndrcvinfo;
38 }_sctp_cmsg_data_t;
39
40 #define CMSG_SPACE_INITMSG (CMSG_SPACE(sizeof(struct sctp_initmsg)))
41 #define CMSG_SPACE_SNDRCV (CMSG_SPACE(sizeof(struct sctp_sndrcvinfo)))
42
43 typedef union 
44 {
45    struct sockaddr_storage ss;
46    struct sockaddr_in v4;
47    struct sockaddr_in6 v6;
48    struct sockaddr sa;
49 } sockaddr_storage_t;
50
51 #endif
52
53 /**********************************************************************
54          End of file
55 **********************************************************************/