summaryrefslogtreecommitdiff
path: root/cesar/cp/msg/stub
diff options
context:
space:
mode:
authorlaranjeiro2008-11-04 16:49:37 +0000
committerlaranjeiro2008-11-04 16:49:37 +0000
commit4bc60a6d6e96dc53e1f91c82d547075c1a4b3f5a (patch)
tree4fb53edef9804339e35b1404ff75430ab1527a5a /cesar/cp/msg/stub
parentac969f08a1c9dc0bd99e8aa82bfb7b773c66efef (diff)
cp/msg: Added the CM_AMP_MAP.*. Closes #149
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@3436 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar/cp/msg/stub')
-rw-r--r--cesar/cp/msg/stub/src/msg_cm.c66
1 files changed, 66 insertions, 0 deletions
diff --git a/cesar/cp/msg/stub/src/msg_cm.c b/cesar/cp/msg/stub/src/msg_cm.c
index 7b5e546dfc..d64dcbfffd 100644
--- a/cesar/cp/msg/stub/src/msg_cm.c
+++ b/cesar/cp/msg/stub/src/msg_cm.c
@@ -216,3 +216,69 @@ void
cp_msg_cm_sc_join_cnf_send (cp_t *ctx, cp_mme_peer_t *peer_info,
const cp_msg_cm_sc_join_cnf_t *data) {}
+
+cp_mme_tx_t *
+cp_msg_cm_amp_map_req_send_begin (cp_t *ctx, cp_mme_peer_t *peer_info,
+ const uint amplen)
+ __attribute__((weak));
+
+cp_mme_tx_t *
+cp_msg_cm_amp_map_req_send_begin (cp_t *ctx, cp_mme_peer_t *peer_info,
+ const uint amplen)
+{
+ return NULL;
+}
+
+void
+cp_msg_cm_amp_map_req_send (cp_t *ctx, cp_mme_tx_t *mme, const uint amp)
+ __attribute__((weak));
+
+void
+cp_msg_cm_amp_map_req_send (cp_t *ctx, cp_mme_tx_t *mme, const uint amp)
+{}
+
+void
+cp_msg_cm_amp_map_req_send_end (cp_t *ctx, cp_mme_tx_t *mme) __attribute__((weak));
+
+void
+cp_msg_cm_amp_map_req_send_end (cp_t *ctx, cp_mme_tx_t *mme) {}
+
+bool
+cp_msg_cm_amp_map_req_receive_begin (cp_t *ctx, cp_mme_rx_t *mme,
+ uint *amplen){}
+
+void
+cp_msg_cm_amp_map_req_receive (cp_t *ctx, cp_mme_rx_t *mme, uint *amp){};
+
+void
+cp_msg_cm_amp_map_req_receive_end (cp_t *ctx, cp_mme_rx_t *mme){}
+
+bool
+cp_msg_cm_amp_map_req_receive_begin (cp_t *ctx, cp_mme_rx_t *mme,
+ uint *amplen)__attribute__((weak));
+
+void
+cp_msg_cm_amp_map_req_receive (cp_t *ctx, cp_mme_rx_t *mme, uint *amp)__attribute__((weak));
+
+void
+cp_msg_cm_amp_map_req_receive_end (cp_t *ctx, cp_mme_rx_t *mme)__attribute__((weak));
+
+void
+cp_msg_cm_amp_map_cnf_send (cp_t *ctx, cp_mme_peer_t *peer_info,
+ const enum cp_msg_cm_amp_map_cnf_restype_t restype)__attribute__((weak));
+
+bool
+cp_msg_cm_amp_map_cnf_receive (cp_t *ctx, cp_mme_rx_t *mme,
+ enum cp_msg_cm_amp_map_cnf_restype_t *restype)__attribute__((weak));
+
+
+void
+cp_msg_cm_amp_map_cnf_send (cp_t *ctx, cp_mme_peer_t *peer_info,
+ const enum cp_msg_cm_amp_map_cnf_restype_t restype){}
+
+bool
+cp_msg_cm_amp_map_cnf_receive (cp_t *ctx, cp_mme_rx_t *mme
+ enum cp_msg_cm_amp_map_cnf_restype_t *restype)
+{
+ return true;
+}