Skip to content

Commit

Permalink
fixup! fixup! fixup! fixup! Adds DTLS 1.3 ACK message functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
fwh-dc committed Aug 7, 2024
1 parent bd492eb commit f53e668
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions doc/designs/dtlsv1_3/dtlsv1_3-main.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ ACK's are sent for KeyUpdates, NewSessionTicket and Finish (client).
Notes on RFC9147 Section 7.1:

* The implementation does not offer any logic to determine that there is disruption
when receiving messages which means it will not send ACKs for the example given
in RFC9147 Figure 12.
when receiving messages which means it will not send ACKs for the example given
in RFC9147 Figure 12.
* ACKs are always sent immediately after receiving a message to be ACK'ed.
* Empty ACKs are never sent.

Expand Down
2 changes: 1 addition & 1 deletion test/recipes/70-test_dtls13ack.t
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ my $test_name = "test_dtls13ack";
setup($test_name);

plan skip_all => "TLSProxy isn't usable on $^O"
if $^O =~ /^(VMS)$/;
if $^O =~ /^(VMS)$/ || $^O =~ /^(MSWin32)$/;

plan skip_all => "$test_name needs the dynamic engine feature enabled"
if disabled("engine") || disabled("dynamic-engine");
Expand Down

0 comments on commit f53e668

Please sign in to comment.