Out of the protocols Reliable UDP (RUDP), UDT, LWIP and DCCP, which protocols can support BROADCAST mechanism? Which is more reliable and have congestion control?
Broadcasting in RUDP, UDT, LWIP, DCCP
1.4k Views Asked by Rohit Singhal At
1
There are 1 best solutions below
Related Questions in TCP
- Java SocketException: Connection reset,. What is the cause?
- How does a server handle multiple requests, and how does is know where to send which response?
- How does pre-allocating a pool of SocketAsyncEventArgs objects upfront improve the performance of a server application in c#
- How to peek or ready to check whether HTTP request or not in TCP proxy?
- How does bash > /dev/tcp/"ip"/"port 0<&1 keep its connection alive?
- Python TCP Server that both sends and or receives data (independently) using asyncio streams?
- Can't remotely connect to my postgresql database on digitalocean
- Why my message doesn't write into the socket when I try to read the response after sending it?
- What makes MQTT a raw tcp connection that we can't run it in the browser?
- ImGui rendering wrong characters (characters received from tcp sockets)
- TCP/IP Server Using sockets Java
- C# tcp socket keepalive I want to visit a website, but the specified time is very slow and I cannot access it
- Java TCP socket want to multiple times input with one connection
- How do I receive TCP messages on an android Emulator from a physcal device
- Getting error while using the MessagePattern to communicate between microservices
Related Questions in UDP
- Discussion on using golang to implement UDP client timeout retransmission
- What is the correct way to setup and use the Ethernet library in Arduino in order to send and receive UDP broadcast messages between LAN devices?
- Multicast packets not received on windows
- Microcontroller hangs with LWIP UDP
- UDP socket client not able to receive data
- "Parameter is not valid" exception when using Image.FromStream() - UDP Video live stream
- k3s change requested UDP port assignment
- Why does the python client socket receiving a reply but still throw the exception in some threadings?
- Gnuradio "double free or corruption (!prev)" error
- Why we need wraparound in UPD checksum algorithm?
- Simple Java UDP server/client-program works on local machine but not over either LAN (different machines) or internet
- Docker bridge does not transmit from tcpreplay IPv6/UDP/GTP traffic
- trying to send TCP packet and recieve it back and count time in client+server app
- recvmsg returns EAGAIN after select reports file descriptor is ready
- Receiving UDP broadcast on Android
Related Questions in PROTOCOLS
- Python Client-Server Communication with Protocol
- Protocol 43200 after unpacking received data
- Creating a Public Typealias to Combine Multiple Protocols in One Swift Package/Target and Conforming to It in Other Targets
- Automotive: Can we design a secured PDU which is beyond 8 bytes and send it using CAN TP?
- Subtle protocol difference
- What type of communication protocol should I use for a shortlived data stream to an web application
- Firefox - Allowing about: protocol
- How to scan and message devices connected to OpenThread border router from Android app?
- v2gexi protocol Data parshing from pcap file
- "Encountering 'protocol busy' error with node-open-protocol-desoutter in Node.js when performing screwing actions
- Cannot Convert Custom ExpyTableView Type in Swift
- Swift: Singleton class "extends" from protocol
- Use a protocol rather than a struct as an (optional array) extension?
- Is there a way to encapsulate certain properties in a Swift protocol so they aren't visible to users of the protocol?
- Understanding “Finding the Dynamic Type in a Generic Context”
Related Questions in BROADCAST
- What is the correct way to setup and use the Ethernet library in Arduino in order to send and receive UDP broadcast messages between LAN devices?
- Agora Broadcast live streaming black screen on ios browsers when starting a stream agora-rtc-sdk-ng react web app
- In SampleHandler class for BroadcastUploadExtension, my broadcastFinished method not calling but broadcastStarted is calling, someone help me
- Spark has thrown error and removed all broadcast pieces, but still reported broadcast timeout
- Live video using Youtube Live Streaming Api [Python]
- Receiving UDP broadcast on Android
- broadcast 2d to 3d with non matching columns
- How do I receive UDP broadcast packets using GTK / GIO?
- Why am I encountering an error with comm.Bcast() function in mpi4py when broadcasting a numpy array?
- laravel broadcast.php pusher option not working
- Open app without Launcher icon with package Manager and Broadcast
- Tensor power of 1D numpy array
- Is it possible way for allow RTSP protocol in broadcasting?
- How can I broadcast the live location of an airtag on a web site?
- UDP broadcast on localhost
Related Questions in RUDP
- How to create a simple Server Client Application Using RUDP in Java?
- Checksum checking in UDP using UDP socket
- RUDP Packets are not read from inputstream
- TCP, UDP, SCTP, RUDP or RAW?
- RUDP implementation other than bell labs implementation?
- Reliable UDP Protocol Implementation in Java - Why does this happen?
- Is there Reliable UDP implementation for C++ with python asyncio bindings?
- websockets protocols?
- Broadcasting in RUDP, UDT, LWIP, DCCP
- TCP vs Reliable UDP
- Error Occurs with QUIC_TLS_CERTIFICATE_UNKNOWN When Attempting WebTransport Connection
- Is there a way to callback a function without creating a new goroutine?
- how to use maidsafe-rudp as part of my project?
- change FTP server's transport protocol (pyftpdlib)
- Making UDP a connection-oriented protocol?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
"Reliable UDP" is a generic moniker that many different implementations relate. For example, Plan 9's RUDP is a simple reliable point-to-point datagram protocol with rudimentary flow control.
"UDT" is another point-to-point protocol but targeting high-latency high-bandwidth environments where current TCP congestion logic fails such as intercontinental file transfers. The protocol implements reliable delivery at the expense of congestion, packets are pushed through on-mass to reduce the overhead of round-trip ACK and NAK mechanisms.
"LWIP" I assume refers to the lightweight IP stack and is independent of this discussion.
"DCCP" is a means of using ECN to add congestion control above basic datagrams and is orthogonal to reliability.
So what are available options?
The most practical would be an overlay network such as XMPP such that you gain broadcast semantics but leverage TCP congestion controlled connections and HTTP for widespread connectivity. The cost is complexity in code.
If you really must, PGM is a protocol that can provide reliable delivery with congestion control tuned for wired and wireless networks. However it depends upon IP multicast which means expensive network infrastructure support and significantly more complicated integration testing. All present research congestion control mechanisms for PGM saturate and become useless above 10,000 packets-per-second so one has to consider lower packet rates with larger payloads.