summaryrefslogtreecommitdiff
path: root/cp2/sta/data/inc/own_data.h
diff options
context:
space:
mode:
authorlaranjeiro2008-03-31 13:27:05 +0000
committerlaranjeiro2008-03-31 13:27:05 +0000
commit6952a656b03d27c8588d74282b847ab65c0efeee (patch)
tree89e954c02b5f1f9baa75e537b1c935a8726defac /cp2/sta/data/inc/own_data.h
parent7f1668365f0f629bff90b04658d12b5c2d3ed2a7 (diff)
cp2: Added the sta own data.
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@1699 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cp2/sta/data/inc/own_data.h')
-rw-r--r--cp2/sta/data/inc/own_data.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/cp2/sta/data/inc/own_data.h b/cp2/sta/data/inc/own_data.h
new file mode 100644
index 0000000000..df9e67ca0c
--- /dev/null
+++ b/cp2/sta/data/inc/own_data.h
@@ -0,0 +1,30 @@
+#ifndef cp2_sta_data_inc_own_data_h
+#define cp2_sta_data_inc_own_data_h
+/* Cesar project {{{
+ *
+ * Copyright (C) 2008 Spidcom
+ *
+ * <<<Licence>>>
+ *
+ * }}} */
+/**
+ * \file cp2/sta/data/inc/own_data.h
+ * \brief Station own data.
+ * \ingroup cp_sta_data
+ *
+ * Structure containing the station own data.
+ */
+
+struct cp_sta_own_data_private
+{
+ /** STA's tei. */
+ u8 tei;
+ /** Mac address. */
+ mac_t mac_address;
+ /** Security level. */
+ u8 security_level;
+};
+typedef struct cp_sta_own_data_private cp_sta_own_data_private;
+
+
+#endif /* cp2_sta_data_inc_own_data_h */