From 367e948026070983a0a714e4b06dcc3513bde2fd Mon Sep 17 00:00:00 2001 From: Jörg Budischewski Date: Fri, 20 Oct 2000 16:04:52 +0000 Subject: socket.close replaced by socket.shutdown (more threadsafe) --- io/source/connector/ctr_socket.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'io') diff --git a/io/source/connector/ctr_socket.cxx b/io/source/connector/ctr_socket.cxx index 37da3daf9721..867ca30366bb 100644 --- a/io/source/connector/ctr_socket.cxx +++ b/io/source/connector/ctr_socket.cxx @@ -2,9 +2,9 @@ * * $RCSfile: ctr_socket.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 17:24:18 $ + * last change: $Author: jbu $ $Date: 2000-10-20 17:04:52 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -234,7 +234,7 @@ namespace stoc_connector { // enshure that close is called only once if( ! m_bIgnoreClose && 1 == osl_incrementInterlockedCount( (&m_nStatus) ) ) { - m_socket.close(); + m_socket.shutdown(); notifyListeners(this, callClosed); } } -- cgit