aboutsummaryrefslogtreecommitdiffstats
path: root/net/dccp
diff options
context:
space:
mode:
Diffstat (limited to 'net/dccp')
-rw-r--r--net/dccp/input.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/net/dccp/input.c b/net/dccp/input.c
index cde0e704dfce..86ad3ba0649a 100644
--- a/net/dccp/input.c
+++ b/net/dccp/input.c
@@ -540,11 +540,6 @@ int dccp_rcv_state_process(struct sock *sk, struct sk_buff *skb,
540 return 0; 540 return 0;
541 } 541 }
542 542
543 if (unlikely(dh->dccph_type == DCCP_PKT_SYNC)) {
544 dccp_send_sync(sk, dcb->dccpd_seq, DCCP_PKT_SYNCACK);
545 goto discard;
546 }
547
548 switch (sk->sk_state) { 543 switch (sk->sk_state) {
549 case DCCP_CLOSED: 544 case DCCP_CLOSED:
550 dcb->dccpd_reset_code = DCCP_RESET_CODE_NO_CONNECTION; 545 dcb->dccpd_reset_code = DCCP_RESET_CODE_NO_CONNECTION;
@@ -575,6 +570,9 @@ int dccp_rcv_state_process(struct sock *sk, struct sk_buff *skb,
575 sk_wake_async(sk, 0, POLL_OUT); 570 sk_wake_async(sk, 0, POLL_OUT);
576 break; 571 break;
577 } 572 }
573 } else if (unlikely(dh->dccph_type == DCCP_PKT_SYNC)) {
574 dccp_send_sync(sk, dcb->dccpd_seq, DCCP_PKT_SYNCACK);
575 goto discard;
578 } 576 }
579 577
580 if (!queued) { 578 if (!queued) {