Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 64600
b: refs/heads/master
c: cc75689
h: refs/heads/master
v: v3
  • Loading branch information
Vlad Yasevich committed Aug 30, 2007
1 parent ccee278 commit 31e9e32
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2772b495efe341a02c867bc3a03d7362bd336832
refs/heads/master: cc75689a4c4eb94b2fd7e3870347b9237ab39503
7 changes: 6 additions & 1 deletion trunk/net/sctp/associola.c
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,12 @@ void sctp_assoc_control_transport(struct sctp_association *asoc,
break;

case SCTP_TRANSPORT_DOWN:
transport->state = SCTP_INACTIVE;
/* if the transort was never confirmed, do not transition it
* to inactive state.
*/
if (transport->state != SCTP_UNCONFIRMED)
transport->state = SCTP_INACTIVE;

spc_state = SCTP_ADDR_UNREACHABLE;
break;

Expand Down

0 comments on commit 31e9e32

Please sign in to comment.