Re: C# MUD/Telnet Server

Tech-Archive recommends: Repair Windows Errors & Optimize Windows Performance



Benny wrote:
> I have been looking into developing a MUD in C# and most of the help
> out there is for C++. I would prefer C# so I was hoping someone
> could point me in the right direction. I just need a jump start on
> how to develop a telnet server to respond to asynchronous commands
> etc. Thanks in advance!

Oops, a couple warnings regarding my previous post: there needs to be an
exception handler in ClientLoop() that catches all exceptions, and I also
needed to warn you to never, ever read from a socket except in the one place
in ClientLoop() that already does so. An attempt to do so will freeze the
server until the read is complete. Instead, remember any state that you have
to and allow it to return back to ClientLoop() (essentially this is a
single-threaded strategy).
--
Derrick Coetzee, MCP, MSFT (Speech Server)
This posting is provided "AS IS" with no warranties, and confers no
rights.


.



Relevant Pages