1/*
2 * bcmsec_types.h -- local typedefs file
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 * $Id: bcmsec_types.h,v 1.1 2009-12-04 22:30:45 $
13 */
14
15#ifndef _bcmsec_types_h_
16#define _bcmsec_types_h_
17
18
19typedef void clientdata_t;
20typedef void clientdata;
21
22struct ctx {
23	clientdata *client; /* opaque pointer to app context */
24	void *supctx;		/* our local context pointer */
25};
26typedef struct ctx ctx_t;
27
28
29#endif /* _bcmsec_types_h_ */
30