We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f67116 commit 791e54fCopy full SHA for 791e54f
sctp/src/association/association_internal.rs
@@ -3,6 +3,7 @@ mod association_internal_test;
3
4
use super::*;
5
6
+use crate::param::param_forward_tsn_supported::ParamForwardTsnSupported;
7
use crate::param::param_type::ParamType;
8
use crate::param::param_unrecognized::ParamUnrecognized;
9
use async_trait::async_trait;
@@ -769,6 +770,8 @@ impl AssociationInternal {
769
770
self.use_forward_tsn = true;
771
}
772
773
+ } else if let Some(_) = param.as_any().downcast_ref::<ParamForwardTsnSupported>() {
774
+ self.use_forward_tsn = true;
775
776
777
if !self.use_forward_tsn {
0 commit comments