diff options
| author | Michael Brown | 2019-03-10 18:27:33 +0100 |
|---|---|---|
| committer | Michael Brown | 2019-03-10 18:27:33 +0100 |
| commit | 7b63c1275f33e0fa20c0e59dcc1756899533823c (patch) | |
| tree | ad119504311f5f8c06a0a1d28bccf75a9df81b8d /src/include/ipxe | |
| parent | [tls] Display cross-certificate and OCSP status messages (diff) | |
| download | ipxe-7b63c1275f33e0fa20c0e59dcc1756899533823c.tar.gz ipxe-7b63c1275f33e0fa20c0e59dcc1756899533823c.tar.xz ipxe-7b63c1275f33e0fa20c0e59dcc1756899533823c.zip | |
[tls] Display validator messages only while validation is in progress
Allow the cipherstream to report progress status messages during
connection establishment.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe')
| -rw-r--r-- | src/include/ipxe/tls.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/ipxe/tls.h b/src/include/ipxe/tls.h index 4bffde7c2..febbdc589 100644 --- a/src/include/ipxe/tls.h +++ b/src/include/ipxe/tls.h @@ -335,6 +335,8 @@ struct tls_connection { struct pending_operation client_negotiation; /** Server security negotiation pending operation */ struct pending_operation server_negotiation; + /** Certificate validation pending operation */ + struct pending_operation validation; /** TX sequence number */ uint64_t tx_seq; |
