Removes SCT_LIST_set_source and SCT_LIST_set0_logs
[openssl.git] / util / TLSProxy / Message.pm
index ddd0a6d3a840e4059be9fef94f0076da551e8b9a..bbb0ad70619a14038db824e001c51714c3ba293f 100644 (file)
@@ -101,6 +101,16 @@ my %message_type = (
     MT_NEXT_PROTO, "NextProto"
 );
 
+use constant {
+    EXT_STATUS_REQUEST => 5,
+    EXT_ENCRYPT_THEN_MAC => 22,
+    EXT_EXTENDED_MASTER_SECRET => 23,
+    EXT_SESSION_TICKET => 35,
+    # This extension does not exist and isn't recognised by OpenSSL.
+    # We use it to test handling of duplicate extensions.
+    EXT_DUPLICATE_EXTENSION => 1234
+};
+
 my $payload = "";
 my $messlen = -1;
 my $mt;