mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-23 10:29:58 +01:00
dirmngr: Print the last alert message returned by NTBTLS.
* dirmngr/http.c (send_request): Print the last TLS alert. Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
d2f1a0a791
commit
45499b2ca3
@ -2057,6 +2057,14 @@ send_request (http_t hd, const char *httphost, const char *auth,
|
|||||||
|
|
||||||
while ((err = ntbtls_handshake (hd->session->tls_session)))
|
while ((err = ntbtls_handshake (hd->session->tls_session)))
|
||||||
{
|
{
|
||||||
|
#if NTBTLS_VERSION_NUMBER >= 0x000200
|
||||||
|
unsigned int tlevel, ttype;
|
||||||
|
const char *s = ntbtls_get_last_alert (hd->session->tls_session,
|
||||||
|
&tlevel, &ttype);
|
||||||
|
if (s)
|
||||||
|
log_info ("TLS alert: %s (%u.%u)\n", s, tlevel, ttype);
|
||||||
|
#endif
|
||||||
|
|
||||||
switch (err)
|
switch (err)
|
||||||
{
|
{
|
||||||
default:
|
default:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user