summaryrefslogtreecommitdiff
path: root/cp/msg/src/msg_cm.c
diff options
context:
space:
mode:
authorGuillaume2007-09-11 08:51:56 +0000
committerGuillaume2007-09-11 08:51:56 +0000
commite212ed516dcbcf390807a2cbe413f18220ca8b50 (patch)
tree4795b4d69d84c0b8c41a1d79e49723dc212bf9c3 /cp/msg/src/msg_cm.c
parentfece8b856111c67a1c571208fa503afc9d835917 (diff)
work in progress...
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@693 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cp/msg/src/msg_cm.c')
-rw-r--r--cp/msg/src/msg_cm.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/cp/msg/src/msg_cm.c b/cp/msg/src/msg_cm.c
index 7e3aa303ad..3191b6fdb1 100644
--- a/cp/msg/src/msg_cm.c
+++ b/cp/msg/src/msg_cm.c
@@ -46,3 +46,16 @@ msg_cm_unassociated_sta_ind_send(interf_id_t interf_id, mac_adresse_t oda)
STA_TRACE(" send cm_unassociated_sta\n");
msg_send(msg, sizeof(unassociated_sta_t) + MSG_MME_HEADER_SIZE, interf_id);
}
+
+void
+msg_cm_unassociated_sta_ind_rcv(msg_mme_t *msg)
+// 11.5.1
+{
+ unassociated_sta_t *unassociated_sta;
+
+ dbg_assert ( !msg_check_wrong_mme_const_values (msg));
+
+ unassociated_sta = (unassociated_sta_t *) & msg->mm_entry;
+ // TODO add the station which send the message to the discovered STA list...
+ //printf("hello world !\n");
+}