Differences between version 44 and predecessor to the previous major change of DCCP.
Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History
Newer page: | version 44 | Last edited on Tuesday, November 1, 2005 5:13:00 pm | by IanMcDonald | Revert |
Older page: | version 40 | Last edited on Wednesday, October 12, 2005 5:03:59 pm | by IanMcDonald | Revert |
@@ -10,9 +10,9 @@
There is also a [writeup at LWN|http://lwn.net/Articles/149756/].
!!DCCP stack for Linux
-Much of this page is shifting to http://developer
.osdl.org/shemminger/wiki
/index.php/DCCP - please update both webpages at present until [OSDL] becomes a production machine
.
+Much of this page is shifting to http://linux-net
.osdl.org/index.php/DCCP - that page is considered the definitive reference for the DCCP implementation for Linux
.
There is a [GPL] version of DCCP being produced at present for the [LinuxKernel]. This is being maintained by ArnaldoMelo at present. The history of this is that it draws from the code of Patrick ~McManus, Lulea and the [WAND] group that IanMcDonald is part of. The status of this is that it has been accepted by LinusTorvalds into his 2.6.14 tree.
The core DCCP stack was written by ArnaldoMelo using the Linux [TCP] implementation as a model, with DCCP being used as a way to identify code in the [TCP] implementation that could be made generic and shared with other INET transport level implementations. This resulted in the generalisation of code related to the minisockets representing both TCP_SYN_RECV/DCCP_RESPOND and TCP_TIME_WAIT/DCCP_TIME_WAIT status, code related to established/timewait/listen sockets (inet_lookup, inet_lookup_established, etc), the interface to get sock information (tcp_diag), and many other functions and data structures, with more expected to be generalised and eventually used by [SCTP] and any other INET transport protocols that may be introduced in the future.
@@ -68,9 +68,9 @@
http://www.mail-archive.com/dccp@vger.kernel.org/ - a discussion of the Linux implementation of DCCP
!!To do & testing
-There is a [DCCPToDo]
list also which tracks the issues needing working on. The [WLUG] wiki is currently the master maintainer for this
.
+There is a [Todo
list|http://linux-net.osdl.org/index.php/TODO#DCCP]
also which tracks the issues needing working on.
There is a [DCCPTesting] page which also talks about the status of testing in [DCCP].
There is sample code at http://wand.net.nz/~iam4/dccp/sample/ that uses the mmap interface for the 2.4 kernel.
@@ -86,12 +86,20 @@
-#include <netinet/tfrc.h>
+// #include <netinet/tfrc.h>
+#include <linux/tfrc.h>
</pre>
+
+!![Iperf]
+
+There is an [Iperf] patch available [here|http://wand.net.nz/~iam4/dccp/dccp-iperf-2.0.2-1.diff]
+
+!!FAQ
+Q: Why do I get an errno 13 or permission denied?<br>
+A: You are running [SELinux] which does not yet have DCCP support. Disable [SELinux].
For more details, ask IanMcDonald from the WandGroup.
See also:
* KernelDevelopment
----
CategoryProtocols