Home |
Sockets, IP, and Port Addresses Blocking and Non-Blocking Sockets UDP |
UDPProcessing of UDP send and receive is very simple. RTIP-32 maintains a send and receive queue per socket. When an application calls send or sendto on a UDP socket, the data is wrapped into a UDP packet (and fragmented if required) and placed on the output queue. Received UDP packets are directly placed on the application socket's input queue. If required, fragmented packets are assembled.
|