What is an alternative to TServerSocket and TClientSocket (like in Delphi 7), in Delphi 2010? I'm really not sure what to use, since this is what I would like to do:
For server side:
ServerSocket1.Port := 23;
For client side:
ClientSocket1.Port := 23;
ClientSocket1.Host := 'xxx.xxx.xxx.xxx';
What will a alternative be for this in Delphi 2010?