summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorFrederik Wedel-Heinen <frederik.wedel-heinen@dencrypt.dk>2024-01-30 10:00:39 +0100
committerMatt Caswell <matt@openssl.org>2024-02-09 08:16:56 +0000
commit4d7f5b82c684fc2cefc203cddbb4bb17572c5087 (patch)
treea897a4f2430503d378d90cb99e1e32c92838ea5c /util
parentf71035edb059cf4bded7e77da2af24ab3a29b9b8 (diff)
Merge dtls and tls records tests
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/23319)
Diffstat (limited to 'util')
-rw-r--r--util/perl/TLSProxy/Proxy.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/util/perl/TLSProxy/Proxy.pm b/util/perl/TLSProxy/Proxy.pm
index 3ecbd1893e..06de4fbb39 100644
--- a/util/perl/TLSProxy/Proxy.pm
+++ b/util/perl/TLSProxy/Proxy.pm
@@ -750,4 +750,10 @@ sub ciphersuite
return $ciphersuite;
}
+sub isdtls
+{
+ my $self = shift;
+ return $self->{isdtls}; #read-only
+}
+
1;