aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/sctp_input.c
diff options
context:
space:
mode:
authorMichael Tuexen <tuexen@FreeBSD.org>2012-01-20 13:26:11 +0000
committerMichael Tuexen <tuexen@FreeBSD.org>2012-01-20 13:26:11 +0000
commitc75fdd302be6952880e48697e21df8f709e45752 (patch)
tree73d6ff62bd5f54e8298941f9e38f93082a4a9aa0 /sys/netinet/sctp_input.c
parentf3ee32b285ef72f3a735f8446919345c385cfe9c (diff)
downloadsrc-c75fdd302be6952880e48697e21df8f709e45752.tar.gz
src-c75fdd302be6952880e48697e21df8f709e45752.zip
Fix a problem when using the CBAPI.
While there, remove an old comment which does not apply anymore.
Notes
Notes: svn path=/head/; revision=230379
Diffstat (limited to 'sys/netinet/sctp_input.c')
-rw-r--r--sys/netinet/sctp_input.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/netinet/sctp_input.c b/sys/netinet/sctp_input.c
index b3f6371967c9..bd3f26d12a1d 100644
--- a/sys/netinet/sctp_input.c
+++ b/sys/netinet/sctp_input.c
@@ -1024,12 +1024,11 @@ sctp_handle_shutdown_ack(struct sctp_shutdown_ack_chunk *cp SCTP_UNUSED,
sctp_send_shutdown_complete(stcb, net, 0);
/* notify upper layer protocol */
if (stcb->sctp_socket) {
- sctp_ulp_notify(SCTP_NOTIFY_ASSOC_DOWN, stcb, 0, NULL, SCTP_SO_NOT_LOCKED);
if ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) ||
(stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) {
- /* Set the connected flag to disconnected */
stcb->sctp_socket->so_snd.sb_cc = 0;
}
+ sctp_ulp_notify(SCTP_NOTIFY_ASSOC_DOWN, stcb, 0, NULL, SCTP_SO_NOT_LOCKED);
}
SCTP_STAT_INCR_COUNTER32(sctps_shutdown);
/* free the TCB but first save off the ep */