Penguin

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

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

Newer page: version 48 Last edited on Monday, February 20, 2006 4:50:12 pm by IanMcDonald Revert
Older page: version 47 Last edited on Thursday, December 8, 2005 12:08:54 pm by IanMcDonald Revert
@@ -68,9 +68,9 @@
 !!To do & testing 
  
 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 a [DCCPTesting|http://linux-net.osdl.org/index.php/DCCP_Testing ] 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. Don't try using it on Linux 2.6!! 
  
 There is a simple client server application written using DCCP at http://wand.net.nz/~iam4/dccp/dccp-cs-0.01.tar.bz2 
@@ -92,30 +92,14 @@
  
 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 ([EACCES]) or permission denied?<br>  
-A: You are running [SELinux] which does not yet have DCCP support. Disable [SELinux].  
  
-Q: Why do I get an errno 71 ( [EPROTO]) or Protocol error?<br>  
-A : It might be because you haven't set the service option which is compulsory . Sample code below:  
-<verbatim>  
-#define SOL_ DCCP 269  
- #define DCCP_SOCKOPT_SERVICE 2  
-  
-void SetDCCPSocketOptions( thread_Settings *inSettings ) {  
- char *dummy_svc = "junk";  
- Socklen_t len = sizeof(dummy_svc);  
- int rc;  
-  
- rc = setsockopt( inSettings->mSock, SOL_DCCP, DCCP_SOCKOPT_SERVICE,  
- (char*) &dummy_svc, len );  
-}  
-</verbatim>  
+See [FAQ|http ://linux-net .osdl.org/index.php/ DCCP#FAQ]  
  
 For more details, ask IanMcDonald from the WandGroup. 
  
 See also: 
  
 * KernelDevelopment 
 ---- 
 CategoryProtocols