You need to write an application-level protocol that works via UDP. Advise what to read on the topic, examples of simple protocols.
- RFC? - karmadro4
- 2This is too general, I would like specifics. I just wanted to see an example of a simple implementation. There, if it is not clear, I will ask. - Pavel
- Oh, great task. Such a space for fantasy! - skegg 2:44 pm
- > I would like specifics If the board does not like reading the RFC, then I would like specifics on the question. - karmadro4
- tftp - trivial file transfer protocol. I do not remember the rfc number, Google, I hope, knows. Of the difficult ones - see ip-telephony and any meltimudiyu - alexlz
|
2 answers
What exactly is not clear? At the base level, UDP is just sendto / recvfrom.
Well-Known UNIX TCP and UDP Services, try to watch any of them.
|
For the simplest example, see Stevens for "Unix: Network Application Development." Simple echo client and echo server via UDP.
|