summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-04-11Whitespace.masterPaul Warren
2018-10-03Support scales beyond 1GbpsPaul Warren
Guido Jäkel <Guido.Jaekel@GMX.DE>
2017-03-22Choose first running interface, rather than first "up" interface (Redhat ↵Paul Warren
#1403025) Robert Scheck <robert@fedoraproject.org>
2017-02-06Fix bug with DNS resolution. https://bugzilla.redhat.com/show_bug.cgi?id=1120254Paul Warren
2017-01-05Support for unlimited number of lines of output in text mode - Roman Hoog ↵Paul Warren
Antink <rha@open.ch>
2017-01-05Fix handling of packets that are too short to be valid - Frédéric Perrin ↵Paul Warren
<fperrin@brocade.com> When packets that are too short to be valid IP packets happen to start with 0x45 or 0x60, iftop will still try to read source and destination addresses, which will usually just be random garbage. Note the assumption about what libpcap guarantees in the comments to handle_ip_packet(): * It is assumed that the snaplen (currently hard-coded to 1000) is * big enough to always capture the IP header past the L2 encap, and * that pcap never truncates the packet to less than snaplen; in * other words, that pcaphdr->caplen = MIN(pcaphdr->len, snaplen).
2017-01-04Option to display packet counts - Frédéric Perrin <fperrin@brocade.com>Paul Warren
Add a "-u unit" CLI option, as well as a "bandwidth-unit" configuration file option. With "-u packets", traffic is accounted using packets per second; the other options are "-u bits" and "-u bytes". "-B" is still recognized as synonym to "-u bytes". The default is "-u bits", keeping the current behaviour of iftop (everything is in bits/s, except the cumulative totals).
2017-01-04Fix compilation warning from Frédéric Perrin <fperrin@brocade.com>Paul Warren
2017-01-04Fixes for compilation warnings, reported by David Binderman <dcb314@hotmail.com>Paul Warren
2017-01-04Fix mac address displayPaul Warren
iftop would display portions of mac address with large ffffff prefixes. Make if_hw_addr type consistent. Kevin Darbyshire-Bryant <kevin@darbyshire-bryant.me.uk>
2017-01-03Remove pre-release warning.Paul Warren
2017-01-03Update changelogPaul Warren
2017-01-03Clean up libpcap on exit - Brian Russell <brussell@brocade.com>Paul Warren
On exit, call pcap_close() so that any resources used internally by libpcap can be cleaned up. http://lists.beasts.org/pipermail/iftop-users/2016-September/000455.html
2017-01-03Missing header file.Paul Warren
2017-01-03Fix typo.Paul Warren
2017-01-03Delete known issues related to very old distributions from README.Paul Warren
2014-03-31Test commit.pdw
2014-01-19Missing file from CVS.pdw
2014-01-19Updated ChangeLogpdw
2014-01-19Fixed various compilation issues.pdw
2014-01-19Patches from Robert Scheck <robert@fedoraproject.org>pdw
* enable building iftop with more recent versions of autoconf/automake * patch to remove compile time warnings (mostly already applied).
2014-01-05Fixing warnings.pdw
2014-01-05Fixes for a bunch of compiler warnings.pdw
2014-01-05Man page documentation of -t mode.pdw
Compile time warning fixes. Markus Koschany <apo@gambaru.de>
2014-01-02Fix to avoid system call in text mode wherever possible.pdw
Robert Scheck <robert@fedoraproject.org>
2014-01-01update authors file, change version to 1.0pre3pdw
2014-01-01Updated change log.pdw
2014-01-01Portability fixes from Mats Erik Andersson <debian@gisladisker.se>pdw
It restores compilability and most functionality for GNU/Linux, GNU/kFreeBSD, FreeBSD, OpenBSD, OpenSolaris/NexentaCore.
2014-01-01Update to licensing text. Patch by Robert Scheck <robert@fedoraproject.org>pdw
2014-01-01Patch to remove blinking cursor (unclear what platforms this affects)pdw
Gerrit Renker <renker@ualberta.ca>
2014-01-01Treat multicast packets as incoming, rather than incoming (IPv4) or not at allpdw
(IPv6). Patch by Andreas Schwab <schwab@linux-m68k.org>
2014-01-01Patch for text output mode by originally by Patrik Bless, updated by Roman Hoogpdw
Antink <rha@open.ch>
2014-01-01Code tidying.pdw
2014-01-01Minor fixes to man page from Markus Koschany <apo@gambaru.de>pdw
2014-01-01Patch by Robert Scheck <robert@fedoraproject.org> for iftop <= 1.0pre2 to ↵pdw
avoid an assertion failure if an "invalid" (as in outside of IPv4 or IPv6) address family is passed to nss-myhostname's gethostbyaddr_r(). For further information please have a look to Red Hat Bugzilla IDs #839750, #847124, #868065, #961236 and #1007434: - https://bugzilla.redhat.com/show_bug.cgi?id=839750 - https://bugzilla.redhat.com/show_bug.cgi?id=847124 - https://bugzilla.redhat.com/show_bug.cgi?id=868065 - https://bugzilla.redhat.com/show_bug.cgi?id=961236 - https://bugzilla.redhat.com/show_bug.cgi?id=1007434
2014-01-01Fix for memory leak when DNS resolution is turned off.pdw
Patch by Olivier Allard-Jacquin <olivieraj@free.fr> Debian bug ID #677141: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=677141
2014-01-01Added missing docs for -m option.pdw
Noticed by Toralf Förster <toralf.foerster@gmx.de>
2013-11-19Put IPv6 address in square brackets if showing port number.pdw
2011-10-04Fixed typo in changelog, and error in application of i/f autodetection patch.pdw
2011-10-04Updated changelog.pdw
2011-10-04Attempt to detect if interface is actually up when doing autodetection.pdw
2011-10-04Increased capture length and adjusted 802.11 header length for radiotappdw
support.
2011-10-03Patch by Robert Scheck <robert@fedoraproject.org> for iftop >= 0.17, which workspdw
around a PuTTY issue (doesn't honor vt100 line-drawing when in UTF-8 mode) to get sane lines drawn instead of letters. When using PuTTY in UTF-8 mode, you have to execute "NCURSES_NO_UTF8_ACS=1 iftop" in the future. Technically, relinking from curses to ncursesw is just half of the solution, calling setlocale() is the rest. For further information, please have a look to Red Hat Bugzilla, bug ID #546032: https://bugzilla.redhat.com/show_bug.cgi?id=546032
2011-10-03Fixed missing "-N" in synopsis message (Robert Scheck ↵pdw
<robert@fedoraproject.org>)
2011-10-03Untested radiotap support.pdw
2011-10-03Added wmaster to the bad interfaces list.pdw
2011-10-03Removed net/bpf.h as it reportedly breaks on Slackware.pdw
Was added by PFLOG patch but the relevant definitions should be in pcap/bpf.h
2011-10-03Patch from Ole Tange <ole@tange.dk> to make rate adjust faster.pdw
2011-10-03Support for DLT_NULL - Scott Bertilson.pdw
2011-10-03Removed all references to s6_addr32, fixed compilation error.pdw