[1058] in Coldmud discussion meeting

root meeting help first first in chain previous in chain previous next last

Re: [COLD] p11 hang...

daemon@ATHENA.MIT.EDU (Sat Aug 3 10:29:59 1996 )

Date: Sat, 3 Aug 1996 08:12:45 -0600 (MDT)
From: Brandon Gillespie <brandon@tombstone.sunrem.com>
To: coldstuff@cold.org
In-Reply-To: <199608030731.IAA01866@aaaaaaaa.demon.co.uk>

On Sat, 3 Aug 1996, Andrew Wilson wrote:
> So, p11 is hanging.  Telnetting to 1138 gives me the usual 'Escape
> character is ^]' message but no welcome screen.  Is there some new
> .db hackery I need to get this working?  Reverting to p10 till then.

Yup, its in the CHANGES file (as always :)

Change $connection.connect() (and any other connection handling 
.connect()) from/to (pulling from memory):

driver method .connect() {
    arg host, socket;

    set_var('host, socket);
    (| daemon.new_connection() |);
}

to:

driver method .connect() {
    arg client, server, socket;

    host = client;
    daemon.new_connection();
}

Enjoy :)

-Brandon