]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
OpenSSL: Add more handshake message names to debug
authorJouni Malinen <j@w1.fi>
Sat, 9 Feb 2019 21:58:58 +0000 (23:58 +0200)
committerJouni Malinen <j@w1.fi>
Sat, 9 Feb 2019 23:43:50 +0000 (01:43 +0200)
Signed-off-by: Jouni Malinen <j@w1.fi>
src/crypto/tls_openssl.c

index 99caa68bddcd674df68ead3fae2c3aa31f5869ce..d8422d25d2b411158f67552985d106994e61d173 100644 (file)
@@ -1347,8 +1347,16 @@ static const char * openssl_handshake_type(int content_type, const u8 *buf,
                return "client hello";
        case 2:
                return "server hello";
+       case 3:
+               return "hello verify request";
        case 4:
                return "new session ticket";
+       case 5:
+               return "end of early data";
+       case 6:
+               return "hello retry request";
+       case 8:
+               return "encrypted extensions";
        case 11:
                return "certificate";
        case 12:
@@ -1367,6 +1375,12 @@ static const char * openssl_handshake_type(int content_type, const u8 *buf,
                return "certificate url";
        case 22:
                return "certificate status";
+       case 23:
+               return "supplemental data";
+       case 24:
+               return "key update";
+       case 254:
+               return "message hash";
        default:
                return "?";
        }