[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Terminal Session Raw Mode

Ari Brown

7/30/2007 2:48:00 AM

Hey all

I'm using GServer to run a little ruby app (ie a MUD, from scratch,
no less!), and I am using IO.getc(), like in JEG2's #45 MUD example.
However, as this is being run as a server, I don't have control over
a client's computer. So how can I set that terminal session to raw
mode? Is it even possible?



Thanks,
-------------------------------------------------------|
~ Ari
crap my sig won't fit


1 Answer

dave.skidmore

11/1/2007 2:50:00 PM

0

Ari,

I've done something similar, so far just constructed a simple
chatserver. I use IO#gets(); but the thing that helped me with client
stuff is an answer to one of the rubyquiz quizes, specifically this one:
http://www.rubyquiz.com/q...

The handle_telnet function there fixed all the issues I had. I
previously was using PuTTY to connect, and specifying a raw connection.
Trying to use the telnet mode, or Windows Telnet, had wacky echo and
linefeed issues. I added that function to my GServer child, and wrapped
my call to io.gets() in it, and now both PuTTY Telnet mode and windows
telnet connect and act perfectly. It's beautiful.

Thank you, Mr. Gray!

Dave

Ari Brown wrote:
> Hey all
>
> I'm using GServer to run a little ruby app (ie a MUD, from scratch,
> no less!), and I am using IO.getc(), like in JEG2's #45 MUD example.
> However, as this is being run as a server, I don't have control over
> a client's computer. So how can I set that terminal session to raw
> mode? Is it even possible?
>
>
>
> Thanks,
> -------------------------------------------------------|
> ~ Ari
> crap my sig won't fit

--
Posted via http://www.ruby-....