Quote:
Originally posted by Dr Nick
Well, I have read a little in socket programming but didn't think that would suit the task seeing as there isn't a program at the other end that my program needs to connect to.
|
There certainly
is a program at the other end! TCP/IP Sockets are the logical abstraction for sending/receiving data over a network connection. In other words, if you want to send or receive data over a network connection, you will do so through a socket. Your web browser is using a socket to send/receive data from this very website. The "program at the other end" is the web server you are communicating with.
So, as far as your project is concerned, you would
not be relaying data to the ethernet port. You would be relaying data to a socket, and receiving data from it.