Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net
In directory sc8-pr-cvs17.sourceforge.net:/tmp/cvs-serv14364

Modified Files:
        tcpflow.info 
Added Files:
        tcpflow.patch 
Log Message:
patch to fix leopard bug; repair validation errors

--- NEW FILE: tcpflow.patch ---
diff -Naur tcpflow-0.21/src/main.c tcpflow-new/src/main.c
--- tcpflow-0.21/src/main.c     2003-08-07 03:35:24.000000000 -0400
+++ tcpflow-new/src/main.c      2007-11-14 09:17:20.000000000 -0500
@@ -68,7 +68,7 @@
 int no_promisc = 0;
 int bytes_per_flow = 0;
 int max_flows = 0;
-int max_desired_fds = 0;
+int max_desired_fds = MAX_FD_GUESS;
 int console_only = 0;
 int strip_nonprint = 0;
 
@@ -152,7 +152,7 @@
       if ((max_desired_fds = atoi(optarg)) < (NUM_RESERVED_FDS + 2)) {
        DEBUG(1) ("warning: -f flag must be used with argument >= %d",
                  NUM_RESERVED_FDS + 2);
-       max_desired_fds = 0;
+       max_desired_fds = MAX_FD_GUESS;
       }
       break;
     case 'h':

Index: tcpflow.info
===================================================================
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net/tcpflow.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- tcpflow.info        12 Feb 2007 19:51:14 -0000      1.4
+++ tcpflow.info        14 Nov 2007 14:26:48 -0000      1.5
@@ -1,16 +1,31 @@
 Package: tcpflow
 Version: 0.21
-Revision: 1
-Depends: libpcap
+Revision: 2
+Depends: libpcap-shlibs
+BuildDepends: fink (>= 0.24.12), libpcap
 UpdateConfigGuess: true
+PatchFile: %n.patch
+PatchFile-MD5: 9688f3ae498238e1666bf57400714ab6
 Source: http://www.circlemud.org/pub/jelson/tcpflow/%n-%v.tar.gz
 InstallScript: make install DESTDIR=%d
 ConfigureParams: --mandir='${prefix}/share/man' 
--infodir='${prefix}/share/info'
-Description: Captures data transmitted as part of TCP connections
+Description: Captures data transmitted in TCP connections
 DescDetail: <<
-tcpflow is a program that captures data transmitted as part of TCP connections 
(flows), and stores the data in a way that is convenient for protocol analysis 
or debugging. A program like 'tcpdump' shows a summary of packets seen on the 
wire, but usually doesn't store the data that's actually being transmitted. In 
contrast, tcpflow reconstructs the actual data streams and stores each flow in 
a separate file for later analysis. 
+tcpflow is a program that captures data transmitted as part of TCP
+connections (flows), and stores the data in a way that is convenient for
+protocol analysis or debugging. A program like 'tcpdump' shows a summary of
+packets seen on the wire, but usually doesn't store the data that's actually
+being transmitted. In contrast, tcpflow reconstructs the actual data streams
+and stores each flow in a separate file for later analysis. 
 
-tcpflow understands sequence numbers and will correctly reconstruct data 
streams regardless of retransmissions or out-of-order delivery. However, it 
currently does not understand IP fragments; flows containing IP fragments will 
not be recorded properly. 
+tcpflow understands sequence numbers and will correctly reconstruct data
+streams regardless of retransmissions or out-of-order delivery. However,
+it currently does not understand IP fragments; flows containing IP fragments
+will not be recorded properly. 
+<<
+DescPort: <<
+       Would give 'calling setrlimit: Invalid argument' on Leopard.
+       Fix according to: 
http://www.entropy.ch/phpbb2/viewtopic.php?t=2881&sid=32825fe6b6b6308373d01dfbf149b3e6
 <<
 Maintainer: None <[EMAIL PROTECTED]>
 Homepage: http://www.circlemud.org/~jelson/software/tcpflow/


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Fink-commits mailing list
[email protected]
http://news.gmane.org/gmane.os.apple.fink.cvs

Reply via email to