aboutsummaryrefslogtreecommitdiff
path: root/util/perl/TLSProxy/ServerKeyExchange.pm
diff options
context:
space:
mode:
Diffstat (limited to 'util/perl/TLSProxy/ServerKeyExchange.pm')
-rw-r--r--util/perl/TLSProxy/ServerKeyExchange.pm12
1 files changed, 10 insertions, 2 deletions
diff --git a/util/perl/TLSProxy/ServerKeyExchange.pm b/util/perl/TLSProxy/ServerKeyExchange.pm
index e694c15158c2..15dd9a8898e2 100644
--- a/util/perl/TLSProxy/ServerKeyExchange.pm
+++ b/util/perl/TLSProxy/ServerKeyExchange.pm
@@ -1,4 +1,4 @@
-# Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
+# Copyright 2016-2024 The OpenSSL Project Authors. All Rights Reserved.
#
# Licensed under the Apache License 2.0 (the "License"). You may not use
# this file except in compliance with the License. You can obtain a copy
@@ -15,15 +15,23 @@ push @ISA, 'TLSProxy::Message';
sub new
{
my $class = shift;
- my ($server,
+ my ($isdtls,
+ $server,
+ $msgseq,
+ $msgfrag,
+ $msgfragoffs,
$data,
$records,
$startoffset,
$message_frag_lens) = @_;
my $self = $class->SUPER::new(
+ $isdtls,
$server,
TLSProxy::Message::MT_SERVER_KEY_EXCHANGE,
+ $msgseq,
+ $msgfrag,
+ $msgfragoffs,
$data,
$records,
$startoffset,