nas_user.h 2.83 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The OpenAirInterface Software Alliance licenses this file to You under
 * the OAI Public License, Version 1.0  (the "License"); you may not use this file
 * except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.openairinterface.org/?page_id=698
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *-------------------------------------------------------------------------------
 * For more information about the OpenAirInterface (OAI) Software Alliance:
 *      contact@openairinterface.org
 */

gauthier's avatar
 
gauthier committed
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
/*****************************************************************************
Source      nas_user.h

Version     0.1

Date        2012/03/09

Product     NAS stack

Subsystem   NAS main process

Author      Frederic Maurel

Description NAS procedure functions triggered by the user

*****************************************************************************/
#ifndef __NAS_USER_H__
#define __NAS_USER_H__

#include "commonDef.h"
#include "networkDef.h"
43
#include "emm_main.h"
44
#include "esm_ebr.h"
45
#include "user_defs.h"
gauthier's avatar
 
gauthier committed
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62

/****************************************************************************/
/*********************  G L O B A L    C O N S T A N T S  *******************/
/****************************************************************************/

/****************************************************************************/
/************************  G L O B A L    T Y P E S  ************************/
/****************************************************************************/

/****************************************************************************/
/********************  G L O B A L    V A R I A B L E S  ********************/
/****************************************************************************/

/****************************************************************************/
/******************  E X P O R T E D    F U N C T I O N S  ******************/
/****************************************************************************/

63
void nas_user_initialize(nas_user_t *user, emm_indication_callback_t emm_cb,
gauthier's avatar
 
gauthier committed
64 65
                         esm_indication_callback_t esm_cb, const char *version);

66
int nas_user_receive_and_process(nas_user_t *user, char *message);
gauthier's avatar
 
gauthier committed
67

68
int nas_user_process_data(nas_user_t *user, const void *data);
gauthier's avatar
 
gauthier committed
69

70
const void *nas_user_get_data(nas_user_t *nas_user);
gauthier's avatar
 
gauthier committed
71 72

#endif /* __NAS_USER_H__*/