 |
tcptrack - Development branch
|
Section: Unix |
|
|
|
| Added: Sun, Nov 23rd 2003 20:44 UTC (4 years, 7 months ago) |
Updated: Wed, Feb 6th 2008 16:51 UTC (5 months, 0 days ago) |
|
|
About:
tcptrack is a packet sniffer, which passively
watches for connections on a specified network
interface, tracks their states, and lists them in a
manner similar to the Unix 'top' command. It
displays source and destination addresses and
ports, connection state, idle time, and bandwidth
usage.
Author:
Steve Benson [contact developer]
Homepage:
http://www.rhythm.cx/~steve/devel/tcptrack/
Tar/GZ:
http://www.rhythm.cx/[..]1.beta1/source/tcptrack-1.1.beta1.tar.gz
Changelog:
http://www.rhythm.cx/[..]1.1.beta1/source/tcptrack-1.1.beta1/NEWS
Trove categories:
[change]
Dependencies:
[change]
No dependencies filed
|
|
» Rating:
8.46/10.00
(Rank N/A)
» Vitality: 0.02% (Rank 2728)
» Popularity: 2.93% (Rank 1541)

(click to enlarge graphs)
Record hits: 20,460
URL hits: 10,236
Subscribers: 105
|
|
Branches
Releases
|
Version
|
Focus
|
Date
|
|
1.1.beta1
|
Major feature enhancements |
01-Apr-2004 04:33 |
Comments
[»]
make fails with G++ 4.1 (SuSE 10.1)
by Xxreini - Dec 13th 2006 10:46:42
Problem:
IPv4Address.h:16: error: extra qualification IPv4Address:: on member
ptr
and others
Solution:
change the following lines in
IPv4Address.h and TCPPacket.h
any_machine:~/src # diff tcptrack-1.1.5/src/
tcptrack-1.1.5-modified_gpp41/src/
diff tcptrack-1.1.5/src/IPv4Address.h
tcptrack-1.1.5-modified_gpp41/src/IPv4Address.h
16c16
< char * IPv4Address::ptr() const;
---
> char * ptr() const;
diff tcptrack-1.1.5/src/TCPPacket.h
tcptrack-1.1.5-modified_gpp41/src/TCPPacket.h
32,35c32,35
< TCPPacket::TCPPacket( const u_char *data, unsigned int data_len
);
< TCPPacket::TCPPacket( TCPPacket & orig );
< seq_t TCPPacket::getSeq() const;
< seq_t TCPPacket::getAck() const;
---
> TCPPacket( const u_char *data, unsigned int data_len );
> TCPPacket( TCPPacket & orig );
> seq_t getSeq() const;
> seq_t getAck() const;
42,49c42,49
< bool TCPPacket::fin() const;
< bool TCPPacket::syn() const;
< bool TCPPacket::rst() const;
< bool TCPPacket::psh() const;
< bool TCPPacket::ack() const;
< bool TCPPacket::urg() const;
< bool TCPPacket::ece() const;
< bool TCPPacket::cwr() const;
---
> bool fin() const;
> bool syn() const;
> bool rst() const;
> bool psh() const;
> bool ack() const;
> bool urg() const;
> bool ece() const;
> bool cwr() const;
[reply]
[top]
|
|
 |