1/*
2 * Copyright (C) 2013, Broadcom Corporation. All Rights Reserved.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
13 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 *
16 * $Id: dpsta.h 300516 2011-12-04 17:39:44Z $
17 */
18
19#ifndef _DPSTA_H_
20#define _DPSTA_H_
21
22typedef struct psta_if psta_if_t;
23
24/* Proxy STA instance data and exported functions */
25typedef struct psta_if_api {
26	void	*psta;
27	void	*bsscfg;
28	bool	(*is_ds_sta)(void *psta, struct ether_addr *ea);
29	void	*(*psta_find)(void *psta, uint8 *ea);
30	bool	(*bss_auth)(void *bsscfg);
31} psta_if_api_t;
32
33extern psta_if_t *dpsta_register(uint32 unit, psta_if_api_t *inst);
34extern int32 dpsta_recv(void *p);
35
36#endif /* _DPSTA_H_ */
37