1/*
2 * cfg_api.h
3 * Platform independent configuration interface
4 *
5 * Copyright (C) 2014, Broadcom Corporation
6 * All Rights Reserved.
7 *
8 * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation;
9 * the contents of this file may not be disclosed to third parties, copied
10 * or duplicated in any form, in whole or in part, without the prior
11 * written permission of Broadcom Corporation.
12 *
13 * $Id: bcmseclib_wps.h,v 1.1 2010-08-09 19:28:58 $
14*/
15
16#ifndef __BCMSECLIB_EV_WPS_H__
17#define __BCMSECLIB_EV_WPS_H__
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23
24struct bcmseclib_ev_wps {
25	brcm_wpscli_status status;
26	union {
27		char msg_type;
28		brcm_wpscli_nw_settings nw_settings;
29		uint8 peer_mac_addr[6];
30	} u;
31};
32
33
34#ifdef __cplusplus
35}
36#endif
37
38#endif /* __BCMSECLIB_EV_WPS_H__ */
39