[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [dev-serveez] Guile Servers
From: |
Martin Grabmueller |
Subject: |
Re: [dev-serveez] Guile Servers |
Date: |
Mon, 23 Jul 2001 11:48:05 +0200 |
> From: stefan <address@hidden>
> Date: Fri, 20 Jul 2001 16:27:35 +0200 (CEST)
>
> Most of the builtin servers use the miscelleanous field of the
> "svz_socket_t" in order to remember socket specific things. Just
> implemented (and checked into CVS) this for Guile.
I'll check it out as soon as lkcc.org is accessible again :(
> It is called (svz_sock:data sock data) where "data" is optional. The
> procedure returns any previously set value. Now I hope this will
> work. (I guess you just want to remember previous lines in order to
> evaluate multi-liners ?)
Exactly.
> One more comment for the eval-server: The (module (ice-9 safe)) is not
> part of "guile-1.4" and it there is no (object->string). But there should
> be some replacement... Thus I could not really test your eval-server, but
> it seems pretty anyway.
Oh, sorry, forgot about that. the guile-1.4 version should not use
(ice-9 safe) -- it should work without it. And I forgot about
object->string. You can replace it by
(format #f "~s" res)
Regards,
'martin