Move X packet before shutdown().

This commit is contained in:
Bruce Momjian 2001-02-11 13:15:28 +00:00
parent 3152ef63a6
commit cc818a83c0

View File

@ -77,14 +77,10 @@ SOCK_Destructor(SocketClass *self)
{
if (self->socket != -1)
{
SOCK_put_char(self, 'X');
SOCK_flush_output(self);
if (!shutdown(self->socket, 2)) /* no sends or receives */
{
#ifdef DOES_NOT_WORK
SOCK_put_char(self, 'X');
SOCK_flush_output(self);
#endif
closesocket(self->socket);
}
}
if (self->buffer_in)