88afb90f3c
This is the vastly updated cx drvier from Roman Kurakin <rik@cronyx.ru> who has been patiently waiting for this update for sometime. The driver is mostly a rewrite from the version we have in the tree. While some similarities remain, losing the little history that the old driver has is not a big loss, and the re@ felt it was easier this way (less error prone). The userland parts of this update will be committed shortly. The driver is not connected to the build yet. I want to make sure I don't break any platform at any time, so I want to test that with these files in the tree before I continue (on the off chance I'm forgetting a file). I changed the DEBUG macro to CX_DEBUG from the code that was submitted (to not break when we go to building with opt_global.h after the release), as well adding $FreeBSD$. Submitted by: Roman Kurakin Approved by: re@ <scottl>
31 lines
794 B
C
31 lines
794 B
C
/*
|
|
* Defines for Cronyx-Tau adapter driver.
|
|
*
|
|
* Copyright (C) 1999 Cronyx Engineering.
|
|
* Author: Kurakin Roman, <rik@cronyx.ru>
|
|
*
|
|
* This software is distributed with NO WARRANTIES, not even the implied
|
|
* warranties for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
*
|
|
* Authors grant any other persons or organisations a permission to use,
|
|
* modify and redistribute this software in source and binary forms,
|
|
* as long as this message is kept with the software, all derivative
|
|
* works or modified versions.
|
|
*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
#ifdef NETGRAPH
|
|
|
|
#ifndef _CX_NETGRAPH_H_
|
|
#define _CX_NETGRAPH_H_
|
|
|
|
#define NG_CX_NODE_TYPE "cx"
|
|
#define NGM_CX_COOKIE 942763600
|
|
#define NG_CX_HOOK_RAW "rawdata"
|
|
#define NG_CX_HOOK_DEBUG "debug"
|
|
|
|
#endif /* _CX_NETGRAPH_H_ */
|
|
|
|
#endif /* NETGRAPH */
|