Skip to content

Commit ed83f1a

Browse files
authored
sctp: set verification tag to zero on the INIT packet. (#405)
1 parent 5d8fe95 commit ed83f1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sctp/src/association/association_internal.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ impl AssociationInternal {
182182
let outbound = Packet {
183183
source_port: self.source_port,
184184
destination_port: self.destination_port,
185-
verification_tag: self.peer_verification_tag,
185+
verification_tag: 0,
186186
chunks: vec![Box::new(stored_init)],
187187
};
188188

0 commit comments

Comments
 (0)