Loading net/dccp/input.c +8 −1 Original line number Diff line number Diff line Loading @@ -50,6 +50,7 @@ static void dccp_rcv_closereq(struct sock *sk, struct sk_buff *skb) return; } if (sk->sk_state != DCCP_CLOSING) dccp_set_state(sk, DCCP_CLOSING); dccp_send_close(sk, 0); } Loading Loading @@ -561,6 +562,12 @@ int dccp_rcv_state_process(struct sock *sk, struct sk_buff *skb, return 0; } if (unlikely(dh->dccph_type == DCCP_PKT_SYNC)) { dccp_send_sync(sk, DCCP_SKB_CB(skb)->dccpd_seq, DCCP_PKT_SYNCACK); goto discard; } switch (sk->sk_state) { case DCCP_CLOSED: return 1; Loading Loading
net/dccp/input.c +8 −1 Original line number Diff line number Diff line Loading @@ -50,6 +50,7 @@ static void dccp_rcv_closereq(struct sock *sk, struct sk_buff *skb) return; } if (sk->sk_state != DCCP_CLOSING) dccp_set_state(sk, DCCP_CLOSING); dccp_send_close(sk, 0); } Loading Loading @@ -561,6 +562,12 @@ int dccp_rcv_state_process(struct sock *sk, struct sk_buff *skb, return 0; } if (unlikely(dh->dccph_type == DCCP_PKT_SYNC)) { dccp_send_sync(sk, DCCP_SKB_CB(skb)->dccpd_seq, DCCP_PKT_SYNCACK); goto discard; } switch (sk->sk_state) { case DCCP_CLOSED: return 1; Loading