diff options
author | wpaul <wpaul@FreeBSD.org> | 1998-09-26 01:29:51 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 1998-09-26 01:29:51 +0000 |
commit | 1c09b1d942e2ce05d6cff57800d2cddbe378e889 (patch) | |
tree | 8bfe90136c910de903b4b3f86e6b6811249f07e2 /include/rpc | |
parent | 7e33170a26eb4e00de1118e6ad023f344f2eda57 (diff) | |
download | FreeBSD-src-1c09b1d942e2ce05d6cff57800d2cddbe378e889.zip FreeBSD-src-1c09b1d942e2ce05d6cff57800d2cddbe378e889.tar.gz |
#ifdef out DES ioctls which don't exist in FreeBSD. These originated
with the SunRPC code to allow the use of hardware DES on certain Sun
hardware that supported it (if you installed the appropriate kit). We
don't have them and they apparently break the ioctl table
generation for kdump.
Pointed out by: bde
Diffstat (limited to 'include/rpc')
-rw-r--r-- | include/rpc/des.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/rpc/des.h b/include/rpc/des.h index abb1789..f41e5a7 100644 --- a/include/rpc/des.h +++ b/include/rpc/des.h @@ -56,6 +56,14 @@ struct desparams { # define des_buf UDES.UDES_buf /* otherwise, pointer to data */ }; +#ifdef notdef + +/* + * These ioctls are only implemented in SunOS. Maybe someday + * if somebody writes a driver for DES hardware that works + * with FreeBSD, we can being that back. + */ + /* * Encrypt an arbitrary sized buffer */ @@ -66,6 +74,8 @@ struct desparams { */ #define DESIOCQUICK _IOWR(d, 7, struct desparams) +#endif + /* * Software DES. */ |