This is the mail archive of the guile@sourceware.cygnus.com mailing list for the Guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Scheme book recommendations


   From: "Peter C. Norton" <spacey@lenin.nu>
   Date: Wed, 7 Jun 2000 16:10:02 -0700

   Would it make sense to have the example in 2 parts, client and server
   (server keeping some kind of persistance, or just a different
   environemnt then the client) and use unix domain sockets?

here, the server speaks telnet protocol, so we can use telnet as the
client.  you can introduce a trivially specialized client, of course:

	#!/bin/sh
	# ID: gelnet.sh,v 1.3 1998/05/29 05:47:32 ttn Exp

	[ x"$1" = x ] && { echo usage: `basename $0` HOST ; exit 1 }

	exec telnet $1 20003

	# gelnet.sh,v1.3 ends here

thi

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]