Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 5 years ago.
I will do a few small projects over the next few months and need some books (preferably) or URLs to learn some basic concepts.
In general one PC or embedded device (which varies by project) collects some user input or data from an external hardware device and transmits it to a remote PC which will enter it into a database.
The back-end will be coded in Delphi using Indy socket components. The front-end might be a PC running a Delphi app using the same Indy sockets, but it might equally be a small controller board, probably programmed in C (with neither Windows nor Linux as an o/s, but with some unforeseeable socket support).
So, what I need is
- something - probably language agnostic - to get me up to speed on sockets programming
- conformation that I can just use a stream and write/read to define my own protocol (over TCP/IP) which will be very simple
- some overview of general networking (TCP?) concepts; maybe a little on security, general client/server stuff (for instance, I can send some from clients to the server and send a reply, but am not so sure about server initiated communication to a single server or a broadcast to all clients)
- anything else?
Any recommendations to get me up to speed, at least enough for a small project which would allow me to learn on the job.
Thanks in advance