I've looked over the Classes that seem relevant but it is not clear that there is a Class equivalent to Pipe that is for TCP/UDP sockets. The Socket class description seems to not just do what you need to create and bind a port and set up listening. At the moment I've implemented this in straight unix networking primitives... but it would be nice if I Socket were really the same API as Pipe.
How do others deal with this? Am I mistaken in what Socket does?
This is a case where I don't want complexity, just a standard OO cover to standard IP networking.