rename filename

This commit is contained in:
Sukchan Lee 2017-02-20 19:46:58 +09:00
parent c923af04b8
commit 87f2acada1
9 changed files with 14 additions and 14 deletions

View File

@ -3,12 +3,12 @@
noinst_LTLIBRARIES = libcellwire.la
libcellwire_la_SOURCES = \
cellwire.h event.h context.h s1ap_contents.h s1ap_conv.h s1ap_path.h \
cellwire.h event.h context.h s1ap_build.h s1ap_conv.h s1ap_path.h \
sm.h
nodist_libcellwire_la_SOURCES = \
init.c event.c context.c s1ap_contents.c s1ap_conv.c s1ap_path.c \
init.c event.c context.c s1ap_build.c s1ap_conv.c s1ap_path.c \
mme_sm.c enb_s1_sm.c
libcellwire_la_DEPENDENCIES = \

View File

@ -11,7 +11,7 @@
#define TRACE_MODULE _enb_s1_sm
#include "core_debug.h"
#include "s1ap_contents.h"
#include "s1ap_build.h"
#include "s1ap_conv.h"
#include "s1ap_path.h"

View File

@ -2,7 +2,7 @@
#include "core_debug.h"
#include "context.h"
#include "s1ap_contents.h"
#include "s1ap_build.h"
#include "s1ap_conv.h"
status_t s1ap_build_setup_rsp(pkbuf_t **pkbuf)

View File

@ -1,5 +1,5 @@
#ifndef _S1AP_CONTENTS_H__
#define _S1AP_CONTENTS_H__
#ifndef _S1AP_BUILD_H__
#define _S1AP_BUILD_H__
#include "s1ap_message.h"

View File

@ -5,7 +5,7 @@ bin_PROGRAMS = testcellwire
testcellwire_SOURCES = \
abts.h abts_tests.h testutil.h \
abts.c testutil.c \
s1ap_enb_message.c \
s1ap_enb_build.c \
s1ap_message_test.c nas_message_test.c \
enb_setup_test.c

View File

@ -6,8 +6,8 @@
#include "testutil.h"
#include "s1ap_contents.h"
#include "s1ap_enb_message.h"
#include "s1ap_build.h"
#include "s1ap_enb_build.h"
#include "s1ap_conv.h"
#include "s1ap_path.h"

View File

@ -3,7 +3,7 @@
#include "core_debug.h"
#include "core_pkbuf.h"
#include "context.h"
#include "s1ap_contents.h"
#include "s1ap_build.h"
#include "s1ap_conv.h"
status_t s1ap_build_setup_req(pkbuf_t **pkbuf, c_uint32_t enb_id)

View File

@ -1,5 +1,5 @@
#ifndef _S1AP_ENB_MESSAGE_H__
#define _S1AP_ENB_MESSAGE_H__
#ifndef _S1AP_ENB_BUILD_H__
#define _S1AP_ENB_BUILD_H__
#include "s1ap_message.h"

View File

@ -6,8 +6,8 @@
#include "testutil.h"
#include "s1ap_contents.h"
#include "s1ap_enb_message.h"
#include "s1ap_build.h"
#include "s1ap_enb_build.h"
#include "s1ap_conv.h"
static void s1ap_message_test1(abts_case *tc, void *data)