# File lib/rex/io/stream_server.rb, line 89
        def close_client(client)
                if (client)
                        clients.delete(client)

                        begin
                                client.close
                        rescue IOError
                        end
                end
        end