diff options
Diffstat (limited to 'net/dccp/feat.c')
-rw-r--r-- | net/dccp/feat.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/net/dccp/feat.c b/net/dccp/feat.c index df7dd26cf07e..568def952722 100644 --- a/net/dccp/feat.c +++ b/net/dccp/feat.c | |||
@@ -730,16 +730,6 @@ int dccp_feat_register_sp(struct sock *sk, u8 feat, u8 is_local, | |||
730 | 0, list, len); | 730 | 0, list, len); |
731 | } | 731 | } |
732 | 732 | ||
733 | /* Analogous to dccp_feat_register_sp(), but for non-negotiable values */ | ||
734 | int dccp_feat_register_nn(struct sock *sk, u8 feat, u64 val) | ||
735 | { | ||
736 | /* any changes must be registered before establishing the connection */ | ||
737 | if (sk->sk_state != DCCP_CLOSED) | ||
738 | return -EISCONN; | ||
739 | if (dccp_feat_type(feat) != FEAT_NN) | ||
740 | return -EINVAL; | ||
741 | return __feat_register_nn(&dccp_sk(sk)->dccps_featneg, feat, 0, val); | ||
742 | } | ||
743 | 733 | ||
744 | /* | 734 | /* |
745 | * Tracking features whose value depend on the choice of CCID | 735 | * Tracking features whose value depend on the choice of CCID |