diff options
author | rik <rik@FreeBSD.org> | 2004-02-23 20:19:00 +0000 |
---|---|---|
committer | rik <rik@FreeBSD.org> | 2004-02-23 20:19:00 +0000 |
commit | 12f2c98b14dfa04e75b8199844dc0b14b0229e38 (patch) | |
tree | 437ea38b10203cbe918b27dad6973dcd481e3664 /sys/dev/ctau/ng_ct.h | |
parent | a1828721c8ee88f138d43caf80011088c0e08677 (diff) | |
download | FreeBSD-src-12f2c98b14dfa04e75b8199844dc0b14b0229e38.zip FreeBSD-src-12f2c98b14dfa04e75b8199844dc0b14b0229e38.tar.gz |
Add support for Cronyx-Tau. For now I added only Tau-ISA files, system files
would be changed in next patches, after extra verifications.
Approved by: imp (mentor)
Diffstat (limited to 'sys/dev/ctau/ng_ct.h')
-rw-r--r-- | sys/dev/ctau/ng_ct.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sys/dev/ctau/ng_ct.h b/sys/dev/ctau/ng_ct.h new file mode 100644 index 0000000..5fba878 --- /dev/null +++ b/sys/dev/ctau/ng_ct.h @@ -0,0 +1,31 @@ +/* + * Defines for Cronyx-Tau adapter driver. + * + * Copyright (C) 1999-2004 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. + * + * Cronyx Id: ng_ct.h,v 1.1.2.3 2004/01/27 14:39:11 rik Exp $ + * $FreeBSD$ + */ + +#ifdef NETGRAPH + +#ifndef _CT_NETGRAPH_H_ +#define _CT_NETGRAPH_H_ + +#define NG_CT_NODE_TYPE "ct" +#define NGM_CT_COOKIE 942835777 +#define NG_CT_HOOK_RAW "rawdata" +#define NG_CT_HOOK_DEBUG "debug" + +#endif /* _CT_NETGRAPH_H_ */ + +#endif /* NETGRAPH */ |