summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2022-09-11 17:38:58 +0000
committertb <>2022-09-11 17:38:58 +0000
commit270c5b582a1b9ef637d38ef4514dbb51b93e4721 (patch)
treed89252983546697a84631752e08962ebd52faac7
parent8d51124ff253a5f8f11f6d1985e1cb5917eafec6 (diff)
downloadopenbsd-270c5b582a1b9ef637d38ef4514dbb51b93e4721.tar.gz
openbsd-270c5b582a1b9ef637d38ef4514dbb51b93e4721.tar.bz2
openbsd-270c5b582a1b9ef637d38ef4514dbb51b93e4721.zip
Expose some error codes needed for QUIC support
ok jsing
-rw-r--r--src/lib/libssl/ssl.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h
index caee3d60d9..8195947a7e 100644
--- a/src/lib/libssl/ssl.h
+++ b/src/lib/libssl/ssl.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl.h,v 1.227 2022/08/21 19:42:15 jsing Exp $ */ 1/* $OpenBSD: ssl.h,v 1.228 2022/09/11 17:38:58 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -836,11 +836,9 @@ int PEM_write_SSL_SESSION(FILE *fp, SSL_SESSION *x);
836#define SSL_ERROR_ZERO_RETURN 6 836#define SSL_ERROR_ZERO_RETURN 6
837#define SSL_ERROR_WANT_CONNECT 7 837#define SSL_ERROR_WANT_CONNECT 7
838#define SSL_ERROR_WANT_ACCEPT 8 838#define SSL_ERROR_WANT_ACCEPT 8
839#if defined(LIBRESSL_NEXT_API) || defined(LIBRESSL_INTERNAL)
840#define SSL_ERROR_WANT_ASYNC 9 839#define SSL_ERROR_WANT_ASYNC 9
841#define SSL_ERROR_WANT_ASYNC_JOB 10 840#define SSL_ERROR_WANT_ASYNC_JOB 10
842#define SSL_ERROR_WANT_CLIENT_HELLO_CB 11 841#define SSL_ERROR_WANT_CLIENT_HELLO_CB 11
843#endif
844 842
845#define SSL_CTRL_NEED_TMP_RSA 1 843#define SSL_CTRL_NEED_TMP_RSA 1
846#define SSL_CTRL_SET_TMP_RSA 2 844#define SSL_CTRL_SET_TMP_RSA 2