summaryrefslogtreecommitdiff
path: root/cesar/cp/msg/stub
diff options
context:
space:
mode:
authorlaranjeiro2009-02-26 09:00:47 +0000
committerlaranjeiro2009-02-26 09:00:47 +0000
commit35a3a29845c7cec335b5bfdf3d283d15feae02f9 (patch)
tree728ace9eccffb12d697ed724ab29899a4fee44b7 /cesar/cp/msg/stub
parente61c64d4be7e8f058d61aaa9d346f10ff7b15a10 (diff)
cp/msg: Fix the stub function to be compiled by the others modules.
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@4103 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar/cp/msg/stub')
-rw-r--r--cesar/cp/msg/stub/src/msg_cc.c17
1 files changed, 7 insertions, 10 deletions
diff --git a/cesar/cp/msg/stub/src/msg_cc.c b/cesar/cp/msg/stub/src/msg_cc.c
index 22a507ce29..df2817bcf5 100644
--- a/cesar/cp/msg/stub/src/msg_cc.c
+++ b/cesar/cp/msg/stub/src/msg_cc.c
@@ -442,7 +442,7 @@ cp_msg_cc_handover_cnf_receive (cp_t *ctx, cp_mme_rx_t *mme,
cp_mme_tx_t *
cp_msg_cc_handover_ind_send_begin (cp_t *ctx, cp_mme_peer_t *peer,
- cp_msg_cc_handover_ind_rsc_t rsc,
+ cp_msg_cc_handover_info_ind_rsc_t rsc,
cp_tei_t bcco,
uint num_sta)__attribute__((weak));
@@ -456,7 +456,7 @@ cp_msg_cc_handover_ind_send_end (cp_t *ctx, cp_mme_tx_t *mme)__attribute__((weak
cp_mme_tx_t *
cp_msg_cc_handover_ind_send_begin (cp_t *ctx, cp_mme_peer_t *peer,
- cp_msg_cc_handover_ind_rsc_t rsc,
+ cp_msg_cc_handover_info_ind_rsc_t rsc,
cp_tei_t bcco,
uint num_sta)
{
@@ -471,19 +471,19 @@ cp_msg_cc_handover_ind_send (cp_t *ctx, cp_mme_tx_t *mme,
void
cp_msg_cc_handover_ind_send_end (cp_t *ctx, cp_mme_tx_t *mme) {}
-void
+bool
cp_msg_cc_handover_info_ind_receive_begin (cp_t *ctx, cp_mme_rx_t *mme,
cp_msg_cc_handover_info_ind_rsc_t *rsc,
cp_tei_t *bcco,
uint *num_sta)__attribute__((weak));
-void
+bool
cp_msg_cc_handover_info_ind_receive (cp_t *ctx, cp_mme_rx_t *mme,
cp_tei_t *tei, mac_t *mac_addr,
uint *status, cp_tei_t *ptei)__attribute__((weak));
void
-cp_msg_cc_handover_info_ind_receive_end (cp_t *ctx, cp_mme_tx_t *mme)__attribute__((weak));
+cp_msg_cc_handover_info_ind_receive_end (cp_t *ctx, cp_mme_rx_t *mme)__attribute__((weak));
bool
cp_msg_cc_handover_info_ind_receive_begin (cp_t *ctx, cp_mme_rx_t *mme,
@@ -502,9 +502,6 @@ cp_msg_cc_handover_info_ind_receive (cp_t *ctx, cp_mme_rx_t *mme,
return true;
}
-bool
-cp_msg_cc_handover_info_ind_receive_end (cp_t *ctx, cp_mme_tx_t *mme)
-{
- return true;
-}
+void
+cp_msg_cc_handover_info_ind_receive_end (cp_t *ctx, cp_mme_rx_t *mme) { }