Skip to content

Commit

Permalink
chore: Bring TcpRepr specifics into proofs
Browse files Browse the repository at this point in the history
  • Loading branch information
Tiago Ferreira committed Sep 29, 2023
1 parent 1cb548a commit a440600
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/socket/tcp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7905,6 +7905,7 @@ mod verification {
&& p.control == TcpControl::Syn
&& p.ack_number == None
&& p.seq_number == remote_seq
&& p.max_seg_size != Some(0)
&& p.window_scale == window_scale
});

Expand Down Expand Up @@ -7936,6 +7937,7 @@ mod verification {
&& p.control == TcpControl::None
&& p.ack_number == Some(local_seq + 1)
&& p.seq_number == remote_seq + 1
&& p.max_seg_size != Some(0)
&& p.window_scale == None
});

Expand Down

0 comments on commit a440600

Please sign in to comment.