tags:

views:

77

answers:

1

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. It extends UDP by adding the following additional features: 1. Acknowledgment of received packets 2. Windowing and congestion control 3. Retransmission of lost packets 4. Overbuffering (Faster than real-time streaming)

i need code for this project in c# please help me thanks everybody in this website

A: 

Perhaps this can be useful? http://rudp.codeplex.com/ (found using google). It hasn't been updated since 2007, but I'm sure patches will be appreciated.

Dag