xref: /freebsd-13-stable/sys/dev/cp/ng_cp.h (revision 4b40a16f0d188422227478889b38cc341d50f88f)
1 /*-
2  * Defines for Cronyx-Tau-PCI adapter driver.
3  *
4  * Copyright (C) 1999-2004 Cronyx Engineering.
5  * Author: Kurakin Roman, <rik@cronyx.ru>
6  *
7  * This software is distributed with NO WARRANTIES, not even the implied
8  * warranties for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
9  *
10  * Authors grant any other persons or organisations a permission to use,
11  * modify and redistribute this software in source and binary forms,
12  * as long as this message is kept with the software, all derivative
13  * works or modified versions.
14  *
15  * $Cronyx: ng_cp.h,v 1.1.2.4 2004/01/27 14:39:11 rik Exp $
16  */
17 
18 #ifdef NETGRAPH
19 
20 #ifndef _CP_NETGRAPH_H_
21 #define _CP_NETGRAPH_H_
22 
23 #define NG_CP_NODE_TYPE		"cp"
24 #define NGM_CP_COOKIE		941049562
25 #define NG_CP_HOOK_RAW		"rawdata"
26 #define NG_CP_HOOK_DEBUG	"debug"
27 
28 #endif /* _CP_NETGRAPH_H_ */
29 
30 #endif /* NETGRAPH */
31