blob: f93a4611fa89f0b2652b01475f5140094b7af8c0 [file] [log] [blame]
anjana_sreekumar@infosys.com991c2062020-01-08 11:42:57 +05301/*
2 * Copyright (c) 2003-2018, Great Software Laboratory Pvt. Ltd.
3 * Copyright (c) 2017 Intel Corporation
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#ifndef __S1AP_IE_H_
19#define __S1AP_IE_H_
20
21#include "s1ap_msg_codes.h"
22#include "s1ap_structs.h"
23
24
25#define S1AP_INITUE_IEs 5
26
27/*** IE parsing functions ***/
28typedef void * (ie_parser_function)(char *msg, int len);
29
30//ie_parser_function ie_parser[32];//={};
31
32void* ie_parse_global_enb_id(char *msg, int len);
33void* ie_parse_enb_name(char *msg, int len);
34void* ie_parse_supported_TAs(char *msg, int len);
35void* ie_parse_pagins_DRX(char *msg, int len);
36
37/*** IE parsing functions end***/
38
39#endif /*S1AP_IE_H_*/