diff options
author | June McEnroe <june@causal.agency> | 2021-04-18 17:54:23 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-04-18 17:54:23 -0400 |
commit | 3bb2203d08dbddd9356334d350275be577e9fa84 (patch) | |
tree | dfc4bf1648d4e0e4d3161267235b1b392e832228 /tls_internal.h | |
parent | Bump version to 3.3.1p1 (diff) | |
parent | Import LibreSSL 3.3.2 (diff) | |
download | libretls-3bb2203d08dbddd9356334d350275be577e9fa84.tar.gz libretls-3bb2203d08dbddd9356334d350275be577e9fa84.zip |
Merge LibreSSL 3.3.2 into master
Diffstat (limited to '')
-rw-r--r-- | tls_internal.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tls_internal.h b/tls_internal.h index adc6252..72b08f4 100644 --- a/tls_internal.h +++ b/tls_internal.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tls_internal.h,v 1.77 2019/11/16 21:39:52 beck Exp $ */ +/* $OpenBSD: tls_internal.h,v 1.78 2021/01/21 19:09:10 eric Exp $ */ /* * Copyright (c) 2014 Jeremie Courreges-Anglas <jca@openbsd.org> * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> @@ -107,6 +107,7 @@ struct tls_config { int verify_name; int verify_time; int skip_private_key_check; + int use_fake_private_key; }; struct tls_conninfo { @@ -290,5 +291,6 @@ __END_HIDDEN_DECLS /* XXX this function is not fully hidden so relayd can use it */ void tls_config_skip_private_key_check(struct tls_config *config); +void tls_config_use_fake_private_key(struct tls_config *config); #endif /* HEADER_TLS_INTERNAL_H */ |