1

I'm looking for some kind of TELNET daemon for linux to share a single app.

I wrote a BBS/MUD, but no networking routines, and I'm looking for a way to "share" the app, in a way Citrix XenApp works for GUI/Windows Apps. I remember I used such a server once, for console mode applications, but I cannot recall the name/internet address.

skaffman
  • 398,947
  • 96
  • 818
  • 769
friedkiwi
  • 2,158
  • 8
  • 29
  • 52

1 Answers1

2

As far as I know, it's pretty much unheard of to rely on a sharing layer on top of a MUD to handle sockets rather than having the socket code within the MUD server, not least because using such a layer, it seems like it would be very difficult to have the MUD actually be multiplayer.

You might want to look at integrating SocketMUD with your project; SocketMUD is basically a bare-bones socket handling layer intended for MUD use, so could be exactly what you need.

chaos
  • 122,029
  • 33
  • 303
  • 309