Questions tagged [rudp]

In computer networking, the Reliable User Datagram Protocol (RUDP) is a transport layer protocol designed at Bell Labs for the Plan 9 operating system. It aims to provide a solution where UDP is too primitive because guaranteed-order packet delivery is desirable, but TCP adds too much complexity/overhead. In order for RUDP to gain higher Quality of Service, RUDP implements features that are similar to TCP with less overhead.

In order to gain ensure quality, it extends UDP by adding the following additional features:

Acknowledgment of received packets
Windowing and flow control
Retransmission of lost packets
Overbuffering (Faster than real-time streaming)

RUDP is not currently a formal standard, however it was described in an IETF internet-draft in 1999. It has not been proposed for standardization.

17 questions
0
votes
0 answers

Creating a virtual circuit?

I need to send both reliable and unreliable packets over the Internet. I can't use TCP and UDP because this is going to cause the TCP starvation/UDP dominance effect. For more information about this effect have a look at the "Mixing TCP and UDP"…
None
  • 609
  • 7
  • 22
0
votes
0 answers

how to use maidsafe-rudp as part of my project?

I download the source code in https://github.com/maidsafe/MaidSafe-RUDP. I built and compiled the source code and I got the link library. I do not know how to program with its interface while the client cannot communicate with server,as listed…
lidehua
  • 13
  • 6
1
2