Skip to content

Commit

Permalink
fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup!…
Browse files Browse the repository at this point in the history
… fixup! Adds DTLS 1.3 ACK message functionality
  • Loading branch information
fwh-dc committed Oct 23, 2024
1 parent 2a779c3 commit cd56025
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions util/perl/TLSProxy/Record.pm
Original file line number Diff line number Diff line change
Expand Up @@ -424,8 +424,8 @@ sub reconstruct_record
my $seqlo = ($self->seq >> 0) & 0xffff;

if (TLSProxy::Proxy->is_tls13() && $self->encrypted) {
#Mask sequence number with record body bytes. Explanation
#given in get_records.
# Mask sequence number with record body bytes. Explanation
# given in get_records.
(my $maskhi, my $maskmi, my $masklo) = unpack("nnn", $self->data);
$seqhi ^= $maskhi;
$seqmi ^= $maskmi;
Expand Down
2 changes: 1 addition & 1 deletion util/perl/TLSProxy/RecordNumber.pm
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ sub new
return bless $self, $class;
}

#Read only accessors
# Read only accessors
sub epoch
{
my $self = shift;
Expand Down

0 comments on commit cd56025

Please sign in to comment.