From 1c09b1d942e2ce05d6cff57800d2cddbe378e889 Mon Sep 17 00:00:00 2001 From: wpaul Date: Sat, 26 Sep 1998 01:29:51 +0000 Subject: #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 --- include/rpc/des.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'include/rpc') 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. */ -- cgit v1.1