diff options
author | sam <sam@FreeBSD.org> | 2002-10-04 20:34:30 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2002-10-04 20:34:30 +0000 |
commit | 0196f79e00ff24f3920f16802c98c418bb637a67 (patch) | |
tree | 17ba83e4f9ace400a9730bfbe0962b2e6b0a4405 | |
parent | f3556bbd12972ca134e81a6941b602ae5e975afb (diff) | |
download | FreeBSD-src-0196f79e00ff24f3920f16802c98c418bb637a67.zip FreeBSD-src-0196f79e00ff24f3920f16802c98c418bb637a67.tar.gz |
add DTYPE_CRYPTO for use by /dev/crypto support
-rw-r--r-- | sys/sys/file.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/sys/file.h b/sys/sys/file.h index 90d1a1d..990bd2b 100644 --- a/sys/sys/file.h +++ b/sys/sys/file.h @@ -60,6 +60,7 @@ struct socket; #define DTYPE_PIPE 3 /* pipe */ #define DTYPE_FIFO 4 /* fifo (named pipe) */ #define DTYPE_KQUEUE 5 /* event queue */ +#define DTYPE_CRYPTO 6 /* crypto */ #ifdef _KERNEL |