Skip to content
Snippets Groups Projects
Forked from oai / openairinterface5G
23289 commits behind the upstream repository.
  • Imad ALAWE's avatar
    b3ded779
    openairinterface5g: Fix multi definition of UE/eNB NB_MAX · b3ded779
    Imad ALAWE authored and FredericLeroy's avatar FredericLeroy committed
    In openairinterface5g many definitions in many layers of UE or eNB NB_MAX.
    We created a file called openairinterface5g_limits.h
    located at openairinterface5g_dir/targets/COMMON/ declaring the number max
    of UE and eNB to be used in ALL layers depending on launching conditions
    (LARGE_SCALE for example).
    b3ded779
    History
    openairinterface5g: Fix multi definition of UE/eNB NB_MAX
    Imad ALAWE authored and FredericLeroy's avatar FredericLeroy committed
    In openairinterface5g many definitions in many layers of UE or eNB NB_MAX.
    We created a file called openairinterface5g_limits.h
    located at openairinterface5g_dir/targets/COMMON/ declaring the number max
    of UE and eNB to be used in ALL layers depending on launching conditions
    (LARGE_SCALE for example).
nas_ue_task.h 1.43 KiB
/*
 * 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
 */

#ifndef NAS_UE_TASK_H_
#define NAS_UE_TASK_H_

#include "openairinterface5g_limits.h"
#include "user_defs.h"

// XXX simple array container for multiple users
typedef struct {
    size_t count;
    nas_user_t item[NUMBER_OF_UE_MAX];
} nas_user_container_t;

nas_user_t *find_user_from_fd(nas_user_container_t *users, int fd);

# if defined(ENABLE_ITTI)
void *nas_ue_task(void *args_p);
# endif

#endif /* NAS_TASK_H_ */