From b4c408e0fe423a1afb1c36176e8d37e77226426b Mon Sep 17 00:00:00 2001 From: Sam Leffler Date: Mon, 7 Oct 2002 18:37:31 +0000 Subject: remove CIOGSSESSION (get software session); it was added only for testing --- sys/opencrypto/cryptodev.c | 4 +--- sys/opencrypto/cryptodev.h | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) (limited to 'sys') diff --git a/sys/opencrypto/cryptodev.c b/sys/opencrypto/cryptodev.c index 0e88fda0036d8..6612cef7136d4 100644 --- a/sys/opencrypto/cryptodev.c +++ b/sys/opencrypto/cryptodev.c @@ -146,7 +146,6 @@ cryptof_ioctl( switch (cmd) { case CIOCGSESSION: - case CIOCGSSESSION: sop = (struct session_op *)data; switch (sop->cipher) { case 0: @@ -254,8 +253,7 @@ cryptof_ioctl( } } - error = crypto_newsession(&sid, (txform ? &crie : &cria), - (cmd == CIOCGSESSION ? 1 : -1)); + error = crypto_newsession(&sid, (txform ? &crie : &cria), 1); if (error) goto bail; diff --git a/sys/opencrypto/cryptodev.h b/sys/opencrypto/cryptodev.h index 30962b9aeb6de..8c37ae471e56f 100644 --- a/sys/opencrypto/cryptodev.h +++ b/sys/opencrypto/cryptodev.h @@ -172,7 +172,6 @@ struct crypt_kop { #define CIOCFSESSION _IOW('c', 102, u_int32_t) #define CIOCCRYPT _IOWR('c', 103, struct crypt_op) #define CIOCKEY _IOWR('c', 104, struct crypt_kop) -#define CIOCGSSESSION _IOWR('c', 105, struct session_op) #define CIOCASYMFEAT _IOR('c', 105, u_int32_t) -- cgit v1.3