summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2020-09-03 10:56:10 -0700
committerBenjamin Kaduk <bkaduk@akamai.com>2020-09-05 20:11:50 -0700
commit74eee1bdaa03cfcb3b1df01beff2b6d81a113f58 (patch)
tree050fa8987e1896f7b048c1ab59824e80e032e32b /include
parent4b09e19216d5e889b85593dbf45b78a874426d8a (diff)
Remove unused dummy functions from ktls.h.
The KTLS functions are always used under #ifndef OPENSSL_NO_KTLS, so the dummy functions were never used. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Ben Kaduk <kaduk@mit.edu> (Merged from https://github.com/openssl/openssl/pull/12782)
Diffstat (limited to 'include')
-rw-r--r--include/internal/ktls.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/include/internal/ktls.h b/include/internal/ktls.h
index 2af1589f98..5b5e3cb4e4 100644
--- a/include/internal/ktls.h
+++ b/include/internal/ktls.h
@@ -400,33 +400,5 @@ static ossl_inline int ktls_read_record(int fd, void *data, size_t length)
# endif /* OPENSSL_NO_KTLS_RX */
# endif /* OPENSSL_SYS_LINUX */
-# else /* OPENSSL_NO_KTLS */
-/* Dummy functions here */
-static ossl_inline int ktls_enable(int fd)
-{
- return 0;
-}
-
-static ossl_inline int ktls_start(int fd, void *crypto_info,
- size_t len, int is_tx)
-{
- return 0;
-}
-
-static ossl_inline int ktls_send_ctrl_message(int fd, unsigned char record_type,
- const void *data, size_t length)
-{
- return -1;
-}
-
-static ossl_inline int ktls_read_record(int fd, void *data, size_t length)
-{
- return -1;
-}
-
-static ossl_inline ossl_ssize_t ktls_sendfile(int s, int fd, off_t off, size_t size, int flags)
-{
- return -1;
-}
# endif /* OPENSSL_NO_KTLS */
#endif /* HEADER_INTERNAL_KTLS */