Penguin

Differences between version 38 and predecessor to the previous major change of DCCP.

Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History

Newer page: version 38 Last edited on Wednesday, October 5, 2005 4:08:19 pm by IanMcDonald Revert
Older page: version 37 Last edited on Tuesday, October 4, 2005 8:53:13 am by BruceBarnett Revert
@@ -65,23 +65,33 @@
  
 http://www1.ietf.org/mail-archive/web/dccp/current/index.html - A discussion of the DCCP protocol by the IETF 
  
 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 [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, and a ttcp implementation for DCCP at http://wand.net.nz/~iam4/dccp/ttcp_new.c that works with the 2 .6 kernel  
+There is sample code at http://wand.net.nz/~iam4/dccp/sample/ that uses the mmap interface for the 2.4 kernel.  
+  
+There is a couple of ttcp implementations for DCCP available for the 2.6 [LinuxKernel]:  
+* http://wand.net.nz/~iam4/dccp/ttcp_new.c that works with earlier versions of [DCCP]  
+* http://wand.net.nz/~iam4/dccp/ttcp_acme.c that works with earlier versions of [DCCP] that require the service option to be set (gives ERRNO of 22 otherwise) . This has had include files altered slightly from [ArnaldoMelo]s version (just for TFRC) and should be compiled like  
+<pre>  
+gcc ttcp_acme.c -o ttcp_acme -I ~/linuxsrc/dccpwork/include/  
+</pre>  
+change is:  
+<pre>  
+-#include <netinet/tfrc.h>  
++// #include <netinet/tfrc.h>  
++#include <linux/tfrc.h>  
+</pre>  
  
 For more details, ask IanMcDonald from the WandGroup. 
  
 See also: 
  
 * KernelDevelopment 
 ---- 
 CategoryProtocols