| | Definition: | | (UDP) internet standard network layer, transport layer and session layer protocols which provide simple but unreliable datagram services. UDP is defined in std 6, rfc 768. It adds a checksum and additional process-to-process addressing information. UDP is a connectionless protocol which, like tcp, is layered on top of ip. UDP neither guarantees delivery nor does it require a connection. As a result it is lightweight and efficient, but all error processing and retransmission must be taken care of by the application program. unix manual page: udp(4). [Postel, Jon, User Datagram Protocol, RFC 768, Network Information Center, SRI International, Menlo Park, Calif., August 1980]. |