FST: Mark fst_ies buffer const

This buffer is owned by the FST module, so mark it const in the
set_ies() callback to make it clearer which component is responsible for
modifying and freeing this.

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
Jouni Malinen 2015-08-03 17:37:05 +03:00 committed by Jouni Malinen
parent 5e09f24a34
commit 84bcb4e7a9
6 changed files with 7 additions and 7 deletions

View file

@ -70,9 +70,9 @@ struct fst_wpa_obj {
/**
* set_ies - Set interface's MB IE
* @ctx: User context %ctx
* @fst_ies: MB IE buffer
* @fst_ies: MB IE buffer (owned by FST module)
*/
void (*set_ies)(void *ctx, struct wpabuf *fst_ies);
void (*set_ies)(void *ctx, const struct wpabuf *fst_ies);
/**
* send_action - Send FST Action frame via the interface

View file

@ -85,7 +85,7 @@ static inline int fst_iface_get_hw_modes(struct fst_iface *i,
}
static inline void fst_iface_set_ies(struct fst_iface *i,
struct wpabuf *fst_ies)
const struct wpabuf *fst_ies)
{
i->iface_obj.set_ies(i->iface_obj.ctx, fst_ies);
}