1/*****************************************************************************
2 * wps service (private)
3 *
4 * Copyright (C) 2014, Broadcom Corporation
5 * All Rights Reserved.
6 *
7 * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation;
8 * the contents of this file may not be disclosed to third parties, copied
9 * or duplicated in any form, in whole or in part, without the prior
10 * written permission of Broadcom Corporation.
11 *****************************************************************************
12*/
13
14#if !defined(__wps_svcp_h__)
15#define __wps_svcp_h__
16
17
18struct wps_svc_dat {
19	struct bind_sk *eapol_sk, *wlss_sk;
20	void *eapol_binding, *wlss_binding;
21#if defined(WPS_SVC_PRIVATE)
22	struct wps_dat wps_dat;
23#endif /* defined(WPS_SVC_PRIVATE) */
24};
25
26#endif /* !defined(__wps_svcp_h__) */
27