summaryrefslogtreecommitdiff
path: root/cesar/cp2/cco/action/cco_action.h
diff options
context:
space:
mode:
authorlaranjeiro2008-05-14 09:26:54 +0000
committerlaranjeiro2008-05-14 09:26:54 +0000
commit25367d10327a14e6cc29d167bad53803283cb088 (patch)
treecd94ce9cbdae89a4a5e1c4f946705399822b3009 /cesar/cp2/cco/action/cco_action.h
parente1a84b804369eae8920641b171f4909337ccfacb (diff)
msg & cco_action:
* Update the garbage function of the CCo. * Create the structure and enumerotors for the CC_SET_TEI_MAP and CC_LEAVE MME. * Update the comments of the msg.h file for those MMEs. git-svn-id: svn+ssh://pessac/svn/cesar/trunk@1977 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar/cp2/cco/action/cco_action.h')
-rw-r--r--cesar/cp2/cco/action/cco_action.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/cesar/cp2/cco/action/cco_action.h b/cesar/cp2/cco/action/cco_action.h
index 6c750a3997..8038bac14c 100644
--- a/cesar/cp2/cco/action/cco_action.h
+++ b/cesar/cp2/cco/action/cco_action.h
@@ -111,4 +111,21 @@ void
cp_cco_action_manage_sta_leave (cp_t *ctx, cp_mme_rx_t * leave_req,
cp_sta_t *sta);
+/**
+ * manage explicit leave request of a station.
+ * \param ctx the module context.
+ * \param leave_req The MME leave req message.
+ *
+ * Remove the station from the station manager
+ */
+extern inline void
+cp_cco_action_manage_sta_leave_req (cp_t *ctx, cp_mme_rx_t * leave_req)
+{
+ dbg_assert (ctx);
+ dbg_assert (leave_req);
+
+ cp_cco_action_manage_sta_leave (ctx, leave_req, NULL);
+}
+
+
#endif /* cp2_cco_action_h */