summaryrefslogtreecommitdiff
path: root/cesar/cp/sta/action/info.h
blob: 74cbd62f959369c9407b498020f50f5a5f3e0da7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#ifndef cp_sta_action_info_h
#define cp_sta_action_info_h
/* Cesar project {{{
 *
 * Copyright (C) 2008 Spidcom
 *
 * <<<Licence>>>
 *
 * }}} */
/**
 * \file    cp/sta/action/info.h
 * \brief   STA action, information gathering definitions.
 * \ingroup cp_sta_action
 *
 * Information gathering
 * =====================
 *
 * Gather information from other stations.  Use CM_UNASSOCIATED_STA.IND,
 * beacons, TEI maps...
 */

BEGIN_DECLS

/**
 * Process a CC_SET_TEI_MAP.IND, 11.2.35.
 * \param  ctx  control plane context
 * \param  mme  received MME handle
 *
 * The CCo send an update of the AVLN list of STA.  According to the mode,
 * update the whole list, add or remove a STA.
 *
 * Update:
 *  - STA mgr.
 */
void
cp_sta_action_process_cc_set_tei_map_ind (cp_t *ctx, cp_mme_rx_t *mme);

/**
 * Process a CM_UNASSOCIATED_STA.IND, 11.5.1.
 * \param  ctx  control plane context
 * \param  mme  received MME handle
 *
 * Update the STA list.
 *
 * Update:
 *  - STA mgr.
 */
void
cp_sta_action_process_cm_unassociated_sta_ind (cp_t *ctx, cp_mme_rx_t *mme);

END_DECLS

#endif /* cp_sta_action_info_h */