Commit c8329e4f authored by Lionel Gauthier's avatar Lionel Gauthier

Added UDP task

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@5062 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 79fbfafe
......@@ -38,6 +38,7 @@
# include "sctp_eNB_task.h"
# include "s1ap_eNB.h"
# include "nas_ue_task.h"
# include "udp_eNB_task.h"
# endif
# if defined(ENABLE_RAL)
# include "lteRALue.h"
......@@ -67,6 +68,12 @@ int create_tasks(uint32_t enb_nb, uint32_t ue_nb)
LOG_E(EMU, "Create task for S1AP failed\n");
return -1;
}
if (itti_create_task (TASK_UDP, udp_eNB_task, NULL) < 0)
{
LOG_E(EMU, "Create task for UDP failed\n");
return -1;
}
}
if (ue_nb > 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment