d35b1440cc934ce00ee07848db4f663ff17cd640
[o-du/l2.git] / src / cm / du_app_rlc_inf.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 /* Defines APIs exchanged between du_app and cl module of RLC */
20 #ifndef __RLC_INF_H__
21 #define __RLC_INF_H__
22
23 /* Events */
24 #define EVENT_RLC_UE_CREATE_REQ  210
25 #define EVENT_RLC_UE_CREATE_RSP 211    /*!< Config Confirm */
26 #define EVENT_UL_RRC_MSG_TRANS_TO_DU  212
27 #define EVENT_DL_RRC_MSG_TRANS_TO_RLC 213
28 #define EVENT_RRC_DELIVERY_MSG_TRANS_TO_DU 214
29 #define EVENT_RLC_UE_RECONFIG_REQ  215
30 #define EVENT_RLC_UE_RECONFIG_RSP  216
31 #define EVENT_DL_RRC_MSG_RSP_TO_DU 217
32 #define EVENT_DL_USER_DATA_TRANS_TO_RLC 218
33 #define EVENT_UL_USER_DATA_TRANS_TO_DU 219
34 #define EVENT_RLC_UE_DELETE_REQ 220
35 #define EVENT_RLC_UE_DELETE_RSP 221
36 #define EVENT_RLC_SLICE_PM_TO_DU 222
37 #define EVENT_RLC_UE_REESTABLISH_REQ 223
38 #define EVENT_RLC_UE_REESTABLISH_RSP 224
39 #define EVENT_RLC_MAX_RETRANSMISSION 225
40
41 #define RB_ID_SRB 0
42 #define RB_ID_DRB 1
43
44 /* RLC Direction Config */
45 #define RLC_CFG_DIR_UL        1     /*!< Uplink direction */
46 #define RLC_CFG_DIR_DL        2     /*!< Downlink direction */
47 #define RLC_CFG_DIR_BOTH      3     /*!< Both Downlink and Uplink Direction*/
48
49
50 /* Logical Channel Type */
51 #define LCH_BCCH      1      /*!< BCCH Logical Channel */
52 #define LCH_PCCH      2      /*!< PCCH Logical Channel */
53 #define LCH_CCCH      3      /*!< CCCH Logical Channel */
54 #define LCH_DTCH      4      /*!< DTCH Logical Channel */
55 #define LCH_DCCH      5      /*!< DCCH Logical Channel */
56
57 typedef enum
58 {
59    RB_TYPE_SRB,      /* Signalling Radio Bearer */
60    RB_TYPE_DRB       /* Data Radio Bearer */
61 }RlcRbType;  
62
63 typedef enum
64 {
65    TRANSMISSION_IN_PROGRESS,
66    TRANSMISSION_COMPLETE,
67    TRANSMISSION_FAILED
68 }DlMsgState;
69
70 typedef enum
71 {
72    RLC_CFG_REAS_NONE            ,  /*!< No Failure */
73    RLC_CFG_REAS_RB_CREAT_FAIL   ,  /*!< RB CB creation Failure */
74    RLC_CFG_REAS_UE_CREAT_FAIL   ,  /*!< UE CB creation Failure */
75    RLC_CFG_REAS_CELL_CREAT_FAIL ,  /*!< CELL CB creation Failure */
76    RLC_CFG_REAS_RB_PRSNT        ,  /*!< RB CB already present */
77    RLC_CFG_REAS_LCHTYPE_MIS     ,  /*!< Logical channel type mismatch */
78    RLC_CFG_REAS_RB_UNKWN        ,  /*!< RB Cb unknown */
79    RLC_CFG_REAS_UE_UNKWN        ,  /*!< UE Cb unknown */
80    RLC_CFG_REAS_CELL_UNKWN      ,  /*!< Cell Cb unknown */
81    RLC_CFG_REAS_RB_DEL_FAIL     ,  /*!< RB Cb Deletion Failure */
82    RLC_CFG_REAS_UE_DEL_FAIL     ,  /*!< UE Cb Deletion Failure */
83    RLC_CFG_REAS_RB_REEST_FAIL   ,  /*!< RB Cb Re establish Failure */
84    RLC_CFG_REAS_RB_MODE_MIS     ,  /*!< RB Cb Mode mismatch */
85    RLC_CFG_REAS_REEST_FAIL      ,  /*!< RB Cb Re-establishment Failed */
86    RLC_CFG_REAS_RECFG_FAIL      ,  /*!< RB Cb Re-configuration Failed */
87    RLC_CFG_REAS_INVALID_CFG     ,  /*!< Invalid Configuration Type */
88    RLC_CFG_REAS_SAME_UEID       ,  /*!< UE Ids match in ChngUeId Request */
89    RLC_CFG_REAS_CELL_DEL_FAIL   ,  /*!< Cell Cb Deletion Failure */
90    RLC_CFG_REAS_INVALID_LCHID   ,  /*!< Invalid LChId */
91    RLC_CFG_REAS_INVALID_DIR     ,  /*!< Invalid Direction */
92    RLC_CFG_REAS_UE_EXISTS       ,  /*!< UE ID already exists */
93    RLC_CFG_REAS_INVALID_SNLEN   ,  /*!< Invalid SN Length */
94    RLC_CFG_REAS_SNLEN_MIS       ,  /*!< SN Length mismatch */
95    RLC_CFG_REAS_INVALID_RGUSAP     /*!< Invalid RGU SAP ID */
96 }FailureReason;
97
98 typedef enum
99 {
100    RLC_AM,                    //Acknowledged Mode
101    RLC_UM_BI_DIRECTIONAL,     //UnAcknowledged Mode
102    RLC_UM_UNI_DIRECTIONAL_UL,
103    RLC_UM_UNI_DIRECTIONAL_DL
104 }RlcMode;
105
106 typedef enum
107 {
108    AM_SIZE_12 = 1,
109    AM_SIZE_18
110 }SnLenAm;
111
112 typedef enum
113 {
114    UM_SIZE_6 = 1,
115    UM_SIZE_12
116 }SnLenUm;
117
118 typedef enum
119 {
120    RLC_DU_APP_RSP_OK = 1,
121    RLC_DU_APP_RSP_NOK
122 }RlcRsp;
123
124 /*  Ref: ORAN_WG8.V7.0.0 Sec 11.2.5.10 RLC Max Retransmission Reached */
125
126 typedef struct rlcMaxRetransInd 
127 {
128    uint16_t       cellId;
129    uint16_t       ueId;
130    RlcRbType      lcType;
131    uint8_t        lcId;
132 }RlcMaxRetransInfo;
133
134 typedef struct ulAmCfg
135 {
136    SnLenAm        snLenUl;              /* Sequence Number length in bits. Allowed values are 12 and 18 */
137    int8_t         reAssemTmr;           /* T_reassembling Timer in msec*/
138    int16_t        statProhTmr;          /* T_status_prohibit Timer in msec*/
139
140 }UlAmCfg;
141
142 typedef struct dlAmCfg
143 {
144    SnLenAm      snLenDl;             /* Sequence Number length in bits. Allowed values are 12 and 18 */
145    uint16_t     pollRetxTmr;         /* T_poll_retransmit Timer in msec */
146    int16_t      pollPdu;             /* Used to trigger a poll for every pollPdu.*/
147    int32_t      pollByte;            /* Poll_Byte in bytes. */
148    uint8_t      maxRetxTh;           /* Max_Retx_Threshold */
149
150 }DlAmCfg;
151
152 typedef struct dlUmCfg
153 {
154    SnLenUm        snLenDlUm;             /* Sequence Number length in bits. Allowed values are 6 and 12 */
155
156 }DlUmCfg;
157
158 typedef struct ulUmCfg
159 {
160    SnLenUm        snLenUlUm;             /* Sequence Number length in bits. Allowed values are 6 and 12 */
161    int8_t         reAssemTmr;            /* T_reassembling Timer in msec*/
162
163 }UlUmCfg;
164
165 typedef struct amBearerCfg
166 {
167    UlAmCfg  ulAmCfg;
168    DlAmCfg  dlAmCfg;
169 }AmBearerCfg;
170
171 typedef struct umBiDirBearerCfg
172 {
173    UlUmCfg  ulUmCfg;
174    DlUmCfg  dlUmCfg;
175 }UmBiDirBearerCfg;
176
177 typedef struct umUniDirUlBearerCfg
178 {
179    UlUmCfg  ulUmCfg;
180 }UmUniDirUlBearerCfg;
181
182 typedef struct umUniDirDlBearerCfg
183 {
184    DlUmCfg  dlUmCfg;
185 }UmUniDirDlBearerCfg;
186
187 /* Spec Ref: 38.331, 6.3.2 RLC-BearerConfig */
188 typedef struct rlcBearerCfg
189 {
190    uint8_t      rbId;
191    RlcRbType    rbType;
192    uint8_t      lcId;
193    uint8_t      lcType;
194    Snssai       *snssai; 
195    RlcMode      rlcMode;
196    union
197    {
198       AmBearerCfg         *amCfg;
199       UmBiDirBearerCfg    *umBiDirCfg;
200       UmUniDirUlBearerCfg *umUniDirUlCfg;
201       UmUniDirDlBearerCfg *umUniDirDlCfg;
202    }u;
203    bool isLcAddModRspSent;
204 }RlcBearerCfg;
205
206 /*  Ref: ORAN_WG8.V7.0.0 Sec 11.2.5.3 UE Reconfiguration */
207 typedef struct rlcUeRecfg
208 {
209    uint16_t       cellId;
210    uint8_t        ueId;
211    uint8_t        numLcsToAdd;
212    RlcBearerCfg   rlcLcCfgAdd[MAX_NUM_LC];
213    uint8_t        numLcsToMod;
214    RlcBearerCfg   rlcLcCfgMod[MAX_NUM_LC];
215    uint8_t        numLcsToRel;
216    RlcBearerCfg   rlcLcCfgRel[MAX_NUM_LC];
217 }RlcUeRecfg;
218
219 /*  Ref: ORAN_WG8.V7.0.0 Sec 11.2.5.1 UE Create */
220 typedef struct rlcUeCfg
221 {
222    uint16_t       cellId;
223    uint8_t        ueId;
224    uint8_t        numLcsToAdd;
225    RlcBearerCfg   rlcLcCfgAdd[MAX_NUM_LC];
226 }RlcUeCfg;
227
228 /*  Ref: ORAN_WG8.V7.0.0 Sec 11.2.5.2 UE Create Response */
229 typedef struct rlcUeCfgRsp
230 {
231    uint16_t       cellId;
232    uint16_t       ueId;
233    RlcRsp         result;
234    FailureReason  reason;
235 }RlcUeCfgRsp;
236
237 /*  Ref: ORAN_WG8.V7.0.0 Sec 11.2.5.5 UE Delete Response */
238 typedef struct rlcUeDelete
239 {
240    uint16_t      cellId;
241    uint8_t       ueId;
242 }RlcUeDelete;
243
244 /*  Ref: ORAN_WG8.V7.0.0 Sec 11.2.5.6 UE Delete Response */
245 typedef struct rlcUeDeleteRsp
246 {
247    uint16_t       cellId;
248    uint8_t        ueId;
249    CauseOfResult  status;
250 }RlcUeDeleteRsp;
251
252 /* Ref: ORAN_WG8.V7.0.0 Sec 11.2.5.8 UL RRC Message Transfer*/
253 typedef struct ulRrcMsgInfo
254 {
255    uint16_t   cellId;       /* Cell Id */
256    uint16_t   ueId;         /* UE Id */
257    uint8_t    lcId;         /* Logical channel Id */
258    uint16_t   msgLen;       /* RRC message length (in bytes) */
259    uint8_t    *rrcMsg;      /* RRC Message (UL-DCCH Message) */
260 }RlcUlRrcMsgInfo;
261
262 /* Ref: ORAN_WG8.V7.0.0 Sec 11.2.5.7 DL RRC Message Transfer */
263 typedef struct dlRrcMsgInfo
264 {
265    uint16_t   cellId;         /* Cell Id */
266    uint16_t   ueId;           /* UE Id */
267    uint8_t    lcId;           /* Logical channel Id {1...3} */
268    bool       execDup;        /* Execution duplication enabled */
269    bool       deliveryStaRpt;  /* Reporting of delivery status by RLC to DU-APP enabled */
270    uint16_t   msgLen;         /* RRC Message length */
271    uint8_t    *rrcMsg;        /* RRC Message (DL-DCCH Message) */
272 }RlcDlRrcMsgInfo;
273
274 /* UL User Data from RLC to DU APP */
275 typedef struct ulUserDatInfo
276 {
277    uint16_t   cellId;       /* Cell Id */
278    uint16_t   ueId;         /* UE Id */
279    uint8_t    rbId;
280    uint16_t   msgLen;       /* User data length (in bytes) */
281    uint8_t    *userData;    /* User data (UL-DTCH Message) */
282 }RlcUlUserDatInfo;
283
284 /* DL RRC Message Rsp From RLC to DU APP  */
285 typedef struct dlRrcMsgRsp
286 {
287    uint16_t   cellId;         /* Cell Id */
288    uint16_t   crnti;          /* UE index */
289    DlMsgState state;         /* Dl RRC Msg State */
290 }RlcDlRrcMsgRsp;
291
292 typedef struct
293 {
294   uint32_t sd:24;
295   uint8_t sst;
296 }SliceIdentifier;
297
298 /*Pm Metric for NW Slicing from RLC to DUAPP*/
299 typedef struct slicePm
300 {
301   SliceIdentifier networkSliceIdentifier;
302   double ThpDl;
303   double ThpUl;
304 }SlicePm;
305
306 typedef struct slicePmList
307 {
308    uint8_t numSlice;
309    SlicePm *sliceRecord;
310 }SlicePmList;
311
312 /* DL Data Message from DU APP to RLC */
313 typedef struct dlDataMsgInfo
314 {
315    uint16_t   cellId;         /* Cell Id */
316    uint16_t   ueId;           /* UE Id */
317    uint8_t    rbId;           /* Radio Bearer Id {4 .. MAC\7fX_NUM_DRB} */
318    uint16_t   msgLen;         /* Message length */
319    Buffer     *dlMsg;         /* DL Data */
320 }RlcDlUserDataInfo;
321
322 /*Ref: ORAN_WG8.V7.0.0 Sec 11.2.5.9 UL RRC Message Delivery Report */
323 typedef struct rrcDeliveryStatus
324 {
325    uint16_t  deliveryStatus;
326    uint16_t  triggeringMessage;
327 }RrcDeliveryStatus;
328
329 typedef struct rrcDeliveryReportInfo
330 {
331    uint16_t  cellId;
332    uint16_t  ueId;
333    uint8_t   srbId;
334    RrcDeliveryStatus  rrcDeliveryStatus;
335 }RrcDeliveryReport;
336
337 /*Ref: ORAN_WG8.V7.0.0 Sec 11.2.5.11 UE RLC Re-establishment Req */
338
339 typedef struct rlcUeReestablishReq
340 {  
341    uint16_t   cellId;         
342    uint16_t   ueId;           
343    uint8_t    numLcsToReestablish;
344    uint8_t    lcToReestablish[MAX_NUM_LC];  
345 }RlcUeReestablishReq;
346
347 /*Ref: ORAN_WG8.V7.0.0 Sec 11.2.5.12 UE RLC Re-establishment Rsp */
348 typedef struct rlcUeReestablishRsp 
349 {
350    uint16_t       cellId;
351    uint16_t        ueId;
352    CauseOfResult  status;
353 }RlcUeReestablishRsp;
354
355 /* Function Pointers */
356
357 /* Max Retransmission  from RLC to DU APP*/
358 typedef uint8_t (*RlcDuMaxRetransInd) ARGS((
359          Pst          *pst,
360          RlcMaxRetransInfo *maxRetransInfo));
361
362 /* UE create Request from DU APP to RLC*/
363 typedef uint8_t (*DuRlcUeCreateReq) ARGS((
364    Pst           *pst,
365    RlcUeCfg      *ueCfg ));
366
367 /* UE Cfg Response from RLC to DU APP*/
368 typedef uint8_t (*RlcDuUeCfgRsp) ARGS((
369    Pst          *pst,
370    RlcUeCfgRsp  *ueCfgRsp));
371
372 /* UE Delete Response from RLC to DU APP*/
373 typedef uint8_t (*RlcDuUeDeleteRsp) ARGS((
374    Pst          *pst,
375    RlcUeDeleteRsp  *ueDelRsp));
376
377 /* UL RRC Message from RLC to DU APP */
378 typedef uint8_t (*RlcUlRrcMsgToDuFunc) ARGS((
379    Pst           *pst,
380    RlcUlRrcMsgInfo *ulRrcMsgInfo));
381
382 /* DL RRC Message from DU APP to RLC */
383 typedef uint8_t (*DuDlRrcMsgToRlcFunc) ARGS((
384    Pst           *pst,
385    RlcDlRrcMsgInfo *dlRrcMsgInfo));
386
387 /* RRC delivery message from RLC to DU APP */
388 typedef uint8_t (*RlcRrcDeliveryReportToDuFunc) ARGS((
389    Pst           *pst,
390    RrcDeliveryReport *rrcDeliveryReport));
391
392 /* UE Reconfig Request from DU APP to RLC */
393 typedef uint8_t (*DuRlcUeReconfigReq) ARGS((
394    Pst           *pst,
395    RlcUeRecfg      *ueRecfg ));
396
397 /* UE Delete Request from DU APP to RLC */
398 typedef uint8_t (*DuRlcUeDeleteReq) ARGS((
399    Pst           *pst,
400    RlcUeDelete   *ueDelete));
401
402 /* DL RRC Message from RLC to DU APP */
403 typedef uint8_t (*RlcDlRrcMsgRspToDuFunc) ARGS((
404    Pst           *pst,
405    RlcDlRrcMsgRsp *dlRrcMsgRsp));
406
407 /* UL User data from RLC to DU APP */
408 typedef uint8_t (*RlcUlUserDataToDuFunc) ARGS((
409    Pst           *pst,
410    RlcUlUserDatInfo *ulUserData));
411
412 /* DL User Data from DU APP to RLC */
413 typedef uint8_t (*DuRlcDlUserDataToRlcFunc) ARGS((
414    Pst           *pst,
415    RlcDlUserDataInfo *dlDataMsg));
416
417 /* Slice Metrics from RLC to DU APP */
418 typedef uint8_t (*RlcSlicePmToDuFunc) ARGS((
419    Pst           *pst,
420    SlicePmList *sliceStats));
421
422 /* UE Re-establishment Request from DU APP to RLC */
423 typedef uint8_t (*DuRlcUeReestablishReq) ARGS((
424    Pst           *pst,
425    RlcUeReestablishReq   *ueReestablishReq));
426
427 /* UE Re-establishment Response from RLC to DU APP*/
428 typedef uint8_t (*RlcDuUeReestablishRsp) ARGS((
429    Pst          *pst,
430    RlcUeReestablishRsp  *ueDelRsp));
431
432 /* Pack/Unpack function declarations */
433 uint8_t packRlcDuMaxRetransInd(Pst *pst, RlcMaxRetransInfo *maxRetransInd);
434 uint8_t unpackRlcMaxRetransInd(RlcDuMaxRetransInd  func, Pst *pst, Buffer *mBuf);
435 uint8_t packDuRlcUeCreateReq(Pst *pst, RlcUeCfg *ueCfg);
436 uint8_t unpackRlcUeCreateReq(DuRlcUeCreateReq func, Pst *pst, Buffer *mBuf);
437 uint8_t packRlcDuUeCfgRsp(Pst *pst, RlcUeCfgRsp *ueCfgRsp);
438 uint8_t unpackRlcUeCfgRsp(RlcDuUeCfgRsp func, Pst *pst, Buffer *mBuf);
439 uint8_t packRlcUlRrcMsgToDu(Pst *pst, RlcUlRrcMsgInfo *ulRrcMsgInfo);
440 uint8_t unpackRlcUlRrcMsgToDu(RlcUlRrcMsgToDuFunc func, Pst *pst, Buffer *mBuf);
441 uint8_t packDlRrcMsgToRlc(Pst *pst, RlcDlRrcMsgInfo *dlRrcMsgInfo);
442 uint8_t unpackDlRrcMsgToRlc(DuDlRrcMsgToRlcFunc func, Pst *pst, Buffer *mBuf);
443 uint8_t packRrcDeliveryReportToDu(Pst *pst, RrcDeliveryReport *rrcDeliveryReport);
444 uint8_t unpackRrcDeliveryReportToDu(RlcRrcDeliveryReportToDuFunc func,Pst *pst, Buffer *mBuf);
445 uint8_t packDuRlcUeReconfigReq(Pst *pst, RlcUeRecfg *ueCfg);
446 uint8_t unpackRlcUeReconfigReq(DuRlcUeReconfigReq func, Pst *pst, Buffer *mBuf);
447 uint8_t packRlcDlRrcMsgRspToDu(Pst *pst, RlcDlRrcMsgRsp *dlRrcMsgRsp);
448 uint8_t unpackRlcDlRrcMsgRspToDu(RlcDlRrcMsgRspToDuFunc func, Pst *pst, Buffer *mBuf);
449 uint8_t packRlcUlUserDataToDu(Pst *pst, RlcUlUserDatInfo *ulUserData);
450 uint8_t unpackRlcUlUserDataToDu(RlcUlUserDataToDuFunc func, Pst *pst, Buffer *mBuf);
451 uint8_t packRlcDlUserDataToRlc(Pst *pst, RlcDlUserDataInfo *dlDataMsg);
452 uint8_t unpackRlcDlUserDataToRlc(DuRlcDlUserDataToRlcFunc func, Pst *pst, Buffer *mBuf);
453 uint8_t packDuRlcUeDeleteReq(Pst *pst, RlcUeDelete *ueDelete);
454 uint8_t unpackRlcUeDeleteReq(DuRlcUeDeleteReq func, Pst *pst, Buffer *mBuf);
455 uint8_t packRlcDuUeDeleteRsp(Pst *pst, RlcUeDeleteRsp *ueDeleteRsp);
456 uint8_t unpackRlcUeDeleteRsp(RlcDuUeDeleteRsp func, Pst *pst, Buffer *mBuf);
457 uint8_t packRlcDuSlicePm(Pst *pst, SlicePmList *sliceStats);
458 uint8_t unpackRlcSlicePm(RlcSlicePmToDuFunc func, Pst *pst, Buffer *mBuf);
459 uint8_t packDuRlcUeReestablishReq(Pst *pst, RlcUeReestablishReq *ueReestablish);
460 uint8_t unpackRlcUeReestablishReq(DuRlcUeReestablishReq func, Pst *pst, Buffer *mBuf);
461 uint8_t packRlcDuUeReestablishRsp(Pst *pst, RlcUeReestablishRsp *ueReestablishRsp);
462 uint8_t unpackRlcUeReestablishRsp(RlcDuUeReestablishRsp func, Pst *pst, Buffer *mBuf);
463
464 /* Event Handler function declarations */
465 uint8_t DuProcRlcMaxRetransInd(Pst *pst, RlcMaxRetransInfo *maxRetransInd);
466 uint8_t RlcProcUeCreateReq(Pst *pst, RlcUeCfg *ueCfg);
467 uint8_t DuProcRlcUeCfgRsp(Pst *pst, RlcUeCfgRsp *cfgRsp);
468 uint8_t DuProcRlcUlRrcMsgTrans(Pst *pst, RlcUlRrcMsgInfo *ulRrcMsgInfo);
469 uint8_t RlcProcDlRrcMsgTransfer(Pst *pst, RlcDlRrcMsgInfo *dlRrcMsgInfo);
470 uint8_t DuProcRlcRrcDeliveryReport(Pst *pst, RrcDeliveryReport *rrcDeliveryReport);
471 uint8_t RlcProcUeReconfigReq(Pst *pst, RlcUeRecfg *ueCfg);
472 uint8_t DuProcRlcDlRrcMsgRsp(Pst *pst, RlcDlRrcMsgRsp *dlRrcMsg);
473 uint8_t DuProcRlcUlUserDataTrans(Pst *pst, RlcUlUserDatInfo *ulUserData);
474 uint8_t RlcProcDlUserDataTransfer(Pst *pst, RlcDlUserDataInfo *dlDataMsgInfo);
475 uint8_t RlcProcUeDeleteReq(Pst *pst, RlcUeDelete *ueDelete);
476 uint8_t DuProcRlcUeDeleteRsp(Pst *pst, RlcUeDeleteRsp *delRsp);
477 uint8_t DuProcRlcSliceMetrics(Pst *pst, SlicePmList *sliceStats);
478 uint8_t RlcProcUeReestablishReq(Pst *pst, RlcUeReestablishReq *ueReestablish);
479 uint8_t DuProcRlcUeReestablishRsp(Pst *pst, RlcUeReestablishRsp *delRsp);
480 #endif /* RLC_INF_H */
481
482 /**********************************************************************
483          End of file
484 **********************************************************************/