darkstat 3.0.718 -> 3.0.719

- Implement tracking of remote ports: shows which ports the host
  is making outgoing connections to. Long time feature request.
- Bugfix: when the capture interface goes down, exit instead of
  busy-looping forever.
- Fix "clock error" due to machine reboot.
- SIGUSR1 now resets the time and bytes reported on the graphs
  page.
- Account for all IP protocols.
- Change the default ports_max to only twice the default
  ports_keep.
This commit is contained in:
Tobias Geerinckx-Rice 2015-05-24 15:32:57 +02:00
parent b10cb12a93
commit c4a2f4f4b1
1 changed files with 2 additions and 2 deletions

View File

@ -1,12 +1,12 @@
{ stdenv, fetchurl, libpcap, zlib }:
stdenv.mkDerivation rec {
version = "3.0.718";
version = "3.0.719";
name = "darkstat-${version}";
src = fetchurl {
url = "${meta.homepage}/${name}.tar.bz2";
sha256 = "1zxd4bxdfk1pjpcxhrcp54l991g0lljl4sr312nsd7p8yi9kwbv8";
sha256 = "1mzddlim6dhd7jhr4smh0n2fa511nvyjhlx76b03vx7phnar1bxf";
};
buildInputs = [ libpcap zlib ];