Update of /cvsroot/leaf/src/bering-uclibc/apps/linux/patches
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv8861/patches

Added Files:
        linux-rtsp.patch 
Log Message:
added rtsp netfilter patch

--- NEW FILE: linux-rtsp.patch ---
diff -urpN linux-2.4.34.orig/Documentation/Configure.help 
linux-2.4.34/Documentation/Configure.help
--- linux-2.4.34.orig/Documentation/Configure.help      2007-01-12 
19:35:55.000000000 +0100
+++ linux-2.4.34/Documentation/Configure.help   2007-01-12 19:40:28.000000000 
+0100
@@ -2817,6 +2817,14 @@ CONFIG_IP_NF_AMANDA
   Documentation/modules.txt.  If unsure, say `N'.
 
 
+RTSP protocol support
+CONFIG_IP_NF_RTSP
+  Support the RTSP protocol.  This allows UDP transports to be setup
+  properly, including RTP and RDT.
+
+  If you want to compile it as a module, say 'M' here and read
+  Documentation/modules.txt.  If unsure, say 'Y'.
+
 IRC Send/Chat protocol support
 CONFIG_IP_NF_IRC
   There is a commonly-used extension to IRC called
diff -urpN linux-2.4.34.orig/include/linux/netfilter_helpers.h 
linux-2.4.34/include/linux/netfilter_helpers.h
[...1487 lines suppressed...]
+    if (destaction != NULL)
+    {
+        if (strcmp(destaction, "auto") == 0)
+        {
+            dstact = DSTACT_AUTO;
+        }
+        if (strcmp(destaction, "strip") == 0)
+        {
+            dstact = DSTACT_STRIP;
+        }
+        if (strcmp(destaction, "none") == 0)
+        {
+            dstact = DSTACT_NONE;
+        }
+    }
+    return ret;
+}
+
+module_init(init);
+module_exit(fini);


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
leaf-cvs-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/leaf-cvs-commits

Reply via email to