uipc_socket2.c sbflush question

From: Andre Oppermann <andre_at_freebsd.org>
Date: Thu, 15 Jan 2004 17:13:29 +0100
In sys/kern/uipc_socket2.c:160 we have this:

void
soisdisconnected(so)
        register struct socket *so;
{

        so->so_state &= ~(SS_ISCONNECTING|SS_ISCONNECTED|SS_ISDISCONNECTING);
        so->so_state |= (SS_CANTRCVMORE|SS_CANTSENDMORE|SS_ISDISCONNECTED);
        wakeup(&so->so_timeo);
        sbdrop(&so->so_snd, so->so_snd.sb_cc);
        sowwakeup(so);
        sorwakeup(so);
}

Why is sbdrop() called directly instead of sbflush()?  I think it makes
more sense to change that to a call to sbflush() which then DTRT?

-- 
Andre
Received on Thu Jan 15 2004 - 07:13:34 UTC

This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:37:38 UTC