xref: /freebsd/sys/netgraph/bluetooth/l2cap/ng_l2cap_prse.h (revision c398230b64aea809cb7c5cea8db580af7097920c)
1878ed226SJulian Elischer /*
2878ed226SJulian Elischer  * ng_l2cap_prse.h
3c398230bSWarner Losh  */
4c398230bSWarner Losh 
5c398230bSWarner Losh /*-
6878ed226SJulian Elischer  * Copyright (c) 2001 Maksim Yevmenkin <m_evmenkin@yahoo.com>
7878ed226SJulian Elischer  * All rights reserved.
8878ed226SJulian Elischer  *
9878ed226SJulian Elischer  * Redistribution and use in source and binary forms, with or without
10878ed226SJulian Elischer  * modification, are permitted provided that the following conditions
11878ed226SJulian Elischer  * are met:
12878ed226SJulian Elischer  * 1. Redistributions of source code must retain the above copyright
13878ed226SJulian Elischer  *    notice, this list of conditions and the following disclaimer.
14878ed226SJulian Elischer  * 2. Redistributions in binary form must reproduce the above copyright
15878ed226SJulian Elischer  *    notice, this list of conditions and the following disclaimer in the
16878ed226SJulian Elischer  *    documentation and/or other materials provided with the distribution.
17878ed226SJulian Elischer  *
18878ed226SJulian Elischer  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19878ed226SJulian Elischer  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20878ed226SJulian Elischer  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21878ed226SJulian Elischer  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22878ed226SJulian Elischer  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23878ed226SJulian Elischer  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24878ed226SJulian Elischer  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25878ed226SJulian Elischer  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26878ed226SJulian Elischer  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27878ed226SJulian Elischer  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28878ed226SJulian Elischer  * SUCH DAMAGE.
29878ed226SJulian Elischer  *
30f2bb1caeSJulian Elischer  * $Id: ng_l2cap_prse.h,v 1.2 2003/04/28 21:44:59 max Exp $
31878ed226SJulian Elischer  * $FreeBSD$
32878ed226SJulian Elischer  */
33878ed226SJulian Elischer 
34878ed226SJulian Elischer /***************************************************************************
35878ed226SJulian Elischer  ***************************************************************************
36878ed226SJulian Elischer  **                ng_parse definitions for the L2CAP node
37878ed226SJulian Elischer  ***************************************************************************
38878ed226SJulian Elischer  ***************************************************************************/
39878ed226SJulian Elischer 
40878ed226SJulian Elischer #ifndef _NETGRAPH_L2CAP_PRSE_H_
41f21fff6cSMaksim Yevmenkin #define _NETGRAPH_L2CAP_PRSE_H_
42878ed226SJulian Elischer 
43878ed226SJulian Elischer /*
44878ed226SJulian Elischer  * L2CAP node command list
45878ed226SJulian Elischer  */
46878ed226SJulian Elischer 
47878ed226SJulian Elischer static const struct ng_cmdlist	ng_l2cap_cmdlist[] = {
48878ed226SJulian Elischer 	{
49878ed226SJulian Elischer 		NGM_L2CAP_COOKIE,
50878ed226SJulian Elischer 		NGM_L2CAP_NODE_GET_FLAGS,
51878ed226SJulian Elischer 		"get_flags",
52878ed226SJulian Elischer 		NULL,
53878ed226SJulian Elischer 		&ng_parse_uint16_type
54878ed226SJulian Elischer 	},
55878ed226SJulian Elischer 	{
56878ed226SJulian Elischer 		NGM_L2CAP_COOKIE,
57878ed226SJulian Elischer 		NGM_L2CAP_NODE_GET_DEBUG,
58878ed226SJulian Elischer 		"get_debug",
59878ed226SJulian Elischer 		NULL,
60878ed226SJulian Elischer 		&ng_parse_uint16_type
61878ed226SJulian Elischer 	},
62878ed226SJulian Elischer 	{
63878ed226SJulian Elischer 		NGM_L2CAP_COOKIE,
64878ed226SJulian Elischer 		NGM_L2CAP_NODE_SET_DEBUG,
65878ed226SJulian Elischer 		"set_debug",
66878ed226SJulian Elischer 		&ng_parse_uint16_type,
67878ed226SJulian Elischer 		NULL
68878ed226SJulian Elischer 	},
69f2bb1caeSJulian Elischer 	{
70f2bb1caeSJulian Elischer 		NGM_L2CAP_COOKIE,
71f2bb1caeSJulian Elischer 		NGM_L2CAP_NODE_GET_AUTO_DISCON_TIMO,
72f2bb1caeSJulian Elischer 		"get_disc_timo",
73f2bb1caeSJulian Elischer 		NULL,
74f2bb1caeSJulian Elischer 		&ng_parse_uint16_type
75f2bb1caeSJulian Elischer 	},
76f2bb1caeSJulian Elischer 	{
77f2bb1caeSJulian Elischer 		NGM_L2CAP_COOKIE,
78f2bb1caeSJulian Elischer 		NGM_L2CAP_NODE_SET_AUTO_DISCON_TIMO,
79f2bb1caeSJulian Elischer 		"set_disc_timo",
80f2bb1caeSJulian Elischer 		&ng_parse_uint16_type,
81f2bb1caeSJulian Elischer 		NULL
82f2bb1caeSJulian Elischer 	},
83878ed226SJulian Elischer 	{ 0, }
84878ed226SJulian Elischer };
85878ed226SJulian Elischer 
86878ed226SJulian Elischer #endif /* ndef _NETGRAPH_L2CAP_PRSE_H_ */
87878ed226SJulian Elischer 
88