1 | # $Id: Portfile,v 1.6 2003/03/18 08:08:04 jpm Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name tcpflow |
---|
5 | version 0.21 |
---|
6 | revision 0 |
---|
7 | categories net security |
---|
8 | maintainers jpm@opendarwin.org |
---|
9 | description TCP flow recorder |
---|
10 | long_description \ |
---|
11 | tcpflow is a program that captures data transmitted as part of TCP \ |
---|
12 | connections (flows), and stores the data in a way that is convenient \ |
---|
13 | for protocol analysis or debugging. A program like tcpdump(4) shows \ |
---|
14 | a summary of packets seen on the wire, but usually doesn't store the \ |
---|
15 | data that's actually being transmitted. In contrast, tcpflow \ |
---|
16 | reconstructs the actual data streams and stores each flow in a \ |
---|
17 | separate file for later analysis. tcpflow understands TCP sequence \ |
---|
18 | numbers and will correctly reconstruct data streams regardless of \ |
---|
19 | retransmissions or out-of-order delivery. |
---|
20 | homepage http://www.circlemud.org/pub/jelson/tcpflow/ |
---|
21 | platforms darwin freebsd |
---|
22 | master_sites http://www.circlemud.org/pub/jelson/tcpflow/ |
---|
23 | checksums md5 45a5aef6f043312315b7f342afc4a9c5 |
---|
24 | depends_lib lib:libpcap:libpcap |
---|
25 | |
---|
26 | variant darwin { |
---|
27 | pre-configure { |
---|
28 | file copy -force /usr/share/libtool/config.guess ${worksrcpath}/config.guess |
---|
29 | file copy -force /usr/share/libtool/config.sub ${worksrcpath}/config.sub |
---|
30 | } |
---|
31 | } |
---|