Skip to main content

Posts

Showing posts with the label udp

TCP vs UDP

TCP vs UDP Transmission Control Protocol (TCP) and User Datagram Protocol (UDP) are the major protocols operating at Transport Layer. Transmission Control Protocol (TCP) and User Datagram Protocol (UDP) operate very differently and you can choose Transmission Control Protocol (TCP) or User Datagram Protocol (UDP) depending on your requirement. TCP (transfer control protocol) UDP (user data gram protocol) Transmission Control   Protocol (TCP) is a connection oriented protocol, which means   the devices   should   open a connection   before   transmitting   data and should close the connection gracefully   after   transmitting   the data. User Datagram Protocol (UDP) is Datagram oriented protocol with no overhead for opening, maintaining, and closing a connection. Transmission Control   Protocol (TCP) assure reliable delivery of data to the destination. ...