Re: [fpc-pascal] Implementing a simple tcp/ip connection

2020-05-29 Thread Giuliano Colla
Il 28/05/2020 18:00, Graeme Geldenhuys ha scritto: Though in general, I would just use Indy. +1 The main reason is that I have a relevant amount of Delphi/Kylix code using Delphi's Sockets unit. That way porting that code to Lazarus becomes trivial. Secondly my applications typically involve

Re: [fpc-pascal] Implementing a simple tcp/ip connection

2020-05-28 Thread Michael Van Canneyt
On Thu, 28 May 2020, Marco van de Voort wrote: Op 2020-05-28 om 17:08 schreef Giuliano Colla: Hi everybody, I needed to implement a simple dedicated TCP/IP connection between a client and a server. Nothing fancy, just sending and receiving short strings. I have used in the past for that

Re: [fpc-pascal] Implementing a simple tcp/ip connection

2020-05-28 Thread Graeme Geldenhuys
On 28/05/2020 4:49 pm, Marco van de Voort wrote: > Though in general, I would > just use Indy. +1 Regards, Graeme ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Implementing a simple tcp/ip connection

2020-05-28 Thread Marco van de Voort
Op 2020-05-28 om 17:08 schreef Giuliano Colla: Hi everybody, I needed to implement a simple dedicated TCP/IP connection between a client and a server. Nothing fancy, just sending and receiving short strings. I have used in the past for that purpose the unit Sockets lifting it from

[fpc-pascal] Implementing a simple tcp/ip connection

2020-05-28 Thread Giuliano Colla
Hi everybody, I needed to implement a simple dedicated TCP/IP connection between a client and a server. Nothing fancy, just sending and receiving short strings. I have used in the past for that purpose the unit Sockets lifting it from Delphi/Kylix. This unit was taking advantage of libc, and