]> git.gsnw.org Git - fping.git/log
fping.git
8 months agoPrint cumulative stats with -Q SECS,cumulative
Erik Auerswald [Tue, 30 Apr 2024 15:55:30 +0000 (17:55 +0200)]
Print cumulative stats with -Q SECS,cumulative

With -Q SECS, fping emits information for the just finished
interval.  This is good for long-running fping processes where
one would like to get an update on recent results, ignoring
missing responses from older intervals.  This seems appropriate
for use with other software like netdata or smokeping.

But for short(er)-running fping processes, e.g., during a change
window, it may be more interesting to get a status update since
the beginning of the change window, i.e., the start of fping.
Adding a comma followed by the keyword "cumulative" to -Q SECS
(i.e., -Q SECS,cumulative) changes the interim reports to output
the current per system overall statistics, unless -N is used, too.

The new syntax is documented in fping.pod and added to fping -h
output.

Four tests are added:

  1. Characters after SECS are ignored as before.
  2. Unknown keywords are ignored as before.
  2. Adding ",cumulative" changes -Q output.
  3. Adding ",cumulative" also affects the additional -o output.

This addresses issue #243.

9 months agoPrepare v5.2 release.
dwes [Sat, 20 Apr 2024 09:00:06 +0000 (11:00 +0200)]
Prepare v5.2 release.

9 months agoRemoves the unnecessary file 18
German Service Network [Sun, 14 Apr 2024 10:17:48 +0000 (12:17 +0200)]
Removes the unnecessary file 18

9 months agoExtended configure.ac with --enable-debug and create debug output cpu time use
German Service Network [Sun, 17 Mar 2024 07:10:20 +0000 (08:10 +0100)]
Extended configure.ac with --enable-debug and create debug output cpu time use

9 months agoUpdate Azure Pipline add macOS pipline job
German Service Network [Wed, 20 Mar 2024 08:37:30 +0000 (09:37 +0100)]
Update Azure Pipline add macOS pipline job

9 months agoUpdate Azure Pipline linux test based on github pipline with matching exclude
German Service Network [Wed, 20 Mar 2024 08:10:51 +0000 (09:10 +0100)]
Update Azure Pipline linux test based on github pipline with matching exclude

9 months agoFix number of tests
David Schweikert [Sat, 13 Apr 2024 15:53:04 +0000 (17:53 +0200)]
Fix number of tests

9 months agoRemove flaky test for now.
David Schweikert [Thu, 4 Apr 2024 14:39:55 +0000 (16:39 +0200)]
Remove flaky test for now.

Remove the 'fping -X 2 --generate 8.8.0.0/29' test, because it
is currently failing on the MacOS runner. Also, I am not sure that
it is a good idea to ping the IPs 8.8.0.1 and 8.8.0.2 and rely on
them being up.

9 months agoCheck if the variable next_value->ping_ts != 0 in seqmap_add()
German Service Network [Wed, 20 Mar 2024 06:31:37 +0000 (07:31 +0100)]
Check if the variable next_value->ping_ts != 0 in seqmap_add()

10 months agoalways output error message in crash_and_burn()
Erik Auerswald [Wed, 21 Feb 2024 19:27:37 +0000 (20:27 +0100)]
always output error message in crash_and_burn()

This aligns crash_and_burn() with errno_crash_and_burn()
and addresses issue #300.

10 months agoimprove help output for options -c and -C
Erik Auerswald [Wed, 21 Feb 2024 19:22:44 +0000 (20:22 +0100)]
improve help output for options -c and -C

11 months agouse function stats_reset_interval()
Erik Auerswald [Sat, 17 Feb 2024 16:34:57 +0000 (17:34 +0100)]
use function stats_reset_interval()

Git commit bb8d71ef27f673f25c7e1648ea982c27bb61ac0d from 2020 among many
other things introduced the function stats_reset_interval() to reset the
*_i interval (or split) host statistics, but did not use it.  This commit
replaces the open coded reset of interval stats inside print_host_splits()
and print_netdata() with calling stats_reset_interval().

11 months agotypo fixes pertaining to ICMP for IPv6 sockets
Erik Auerswald [Sat, 17 Feb 2024 16:21:32 +0000 (17:21 +0100)]
typo fixes pertaining to ICMP for IPv6 sockets

As mentioned in issue #300, error messages pertaining to
socket creation may not be printed.  But they should be
corrected anyway, just as the comments.  Having correct
error messages also makes a fix for issue #300 more
obvious, because the messages itself would not change.

11 months agoDocument that -c N overrides -a or -u
Erik Auerswald [Wed, 7 Feb 2024 18:38:51 +0000 (19:38 +0100)]
Document that -c N overrides -a or -u

11 months agoDecouple -a/-u effects from -c
Erik Auerswald [Wed, 7 Feb 2024 18:36:48 +0000 (19:36 +0100)]
Decouple -a/-u effects from -c

As described in issue #295, the option combinations "-c N -u"
and "-c N -a" inadvertently have the same effect as "-c N -q".
Prevent this by first acting on -c, which includes disabling
either -a or -u, if -c is given, before acting on -a/-u.

11 months agoMove description of -i MSEC to probing options
Erik Auerswald [Wed, 7 Feb 2024 18:31:42 +0000 (19:31 +0100)]
Move description of -i MSEC to probing options

The -i MSEC, --interval=MSEC option does not directly affect
the output format, but rather the probe generation, i.e., the
minimum time between probes.  Thus it is more fitting to list
it under "probing options" than under "output options".

11 months agoTest ping to "all IPv6 nodes" multicast address
Erik Auerswald [Tue, 6 Feb 2024 20:55:09 +0000 (21:55 +0100)]
Test ping to "all IPv6 nodes" multicast address

Any Echo Response packet uses a different source address than
used for the target, because it is not allowed to use a multicast
address as source.  This results in extra output in a specific
format on standard error.

This should work, because IPv6 requires multicast support, and
every IPv6 node is supposed to join the "all nodes" multicast
group, including the node the test runs on.  It at least works
on my Ubuntu 20.04 LTS system.

11 months agoTest edge cases of -f and -g
Erik Auerswald [Tue, 6 Feb 2024 20:52:31 +0000 (21:52 +0100)]
Test edge cases of -f and -g

* -f with non-existing file
* -f with input file containing comment and empty line
* -g with non-numeric address in "CIDR" format
* -g with one non-numeric address in start resp. end position
* -g with one IPv6 address in start resp. end position

11 months agoTest -l together with -Q or -t
Erik Auerswald [Tue, 6 Feb 2024 20:45:27 +0000 (21:45 +0100)]
Test -l together with -Q or -t

11 months agoTest that -x, -X, -k require numeric argument
Erik Auerswald [Tue, 6 Feb 2024 20:43:56 +0000 (21:43 +0100)]
Test that -x, -X, -k require numeric argument

11 months agoTest that negative numbers are not accepted
Erik Auerswald [Tue, 6 Feb 2024 20:42:55 +0000 (21:42 +0100)]
Test that negative numbers are not accepted

11 months agoFix a comment describing a test
Erik Auerswald [Tue, 6 Feb 2024 19:20:23 +0000 (20:20 +0100)]
Fix a comment describing a test

11 months agoDefensive coding: guard against a division by zero
Erik Auerswald [Tue, 9 Jan 2024 11:40:46 +0000 (12:40 +0100)]
Defensive coding: guard against a division by zero

In the function print_per_system_stats(), if packets have been
lost, the number of sent packets is checked to be positive before
dividing by it.  If no packets have been lost, this is not checked.
Either the existing check is not needed, or both code paths need
the check.

The function print_per_system_splits() is quite similar to
print_per_system_stats(), and has the equivalent guards against a
division by zero in both code paths, not just one of them.

In the spirit of defensive coding, I think it is better to be safe
and add the missing guard against a division by zero.

11 months agoUpdate exit status description in man page
Erik Auerswald [Wed, 10 Jan 2024 09:47:12 +0000 (10:47 +0100)]
Update exit status description in man page

With the options -x and -X, fping does not require all hosts to
be reachable for an exit status of 0.

This addresses a comment in issue #99 suggesting such a man page
update.

12 months agoTest examples from man page
Erik Auerswald [Mon, 8 Jan 2024 08:35:49 +0000 (09:35 +0100)]
Test examples from man page

The man page gives two examples combining -C and -q, but
these combinations are not yet tested.  Add tests to help
ensure the documented examples continue to work.

12 months agoAdd test for option combination -Q SECS -o
Erik Auerswald [Mon, 8 Jan 2024 08:16:29 +0000 (09:16 +0100)]
Add test for option combination -Q SECS -o

The -o option adds outage duration to the periodic reports.
Each report shows the outage since the last report, not since
the beginning.

12 months agoAdd longer test for -Q SECS
Erik Auerswald [Mon, 8 Jan 2024 08:15:04 +0000 (09:15 +0100)]
Add longer test for -Q SECS

The statistics printed every SECS seconds show the results
since the the last report, not since the beginning.  Also,
every report starts with a timestamp.

12 months agoTest that -g does not accept IPv6
Erik Auerswald [Mon, 8 Jan 2024 08:12:59 +0000 (09:12 +0100)]
Test that -g does not accept IPv6

12 months agoTest edge case behavior of "fping -g"
Erik Auerswald [Mon, 8 Jan 2024 08:12:09 +0000 (09:12 +0100)]
Test edge case behavior of "fping -g"

* wrong number or kind of arguments fails and prints usage;
* an empty range silently pings nothing and fping returns 1;
* a too large range fails with an error message;
* a zero CIDR prefix length fails with an error message.

12 months agoAdd --fwmark/-k option for Linux
deepkv [Fri, 15 Dec 2023 16:25:00 +0000 (17:25 +0100)]
Add --fwmark/-k option for Linux

14 months agoChange obsolete macro from AC_CANONICAL_SYSTEM to AC_CANONICAL_TARGET
German Service Network [Fri, 15 Sep 2023 19:20:14 +0000 (21:20 +0200)]
Change obsolete macro from AC_CANONICAL_SYSTEM to AC_CANONICAL_TARGET

14 months agoMove the OS detection to configure.ac script to set the use of clock_realtime
German Service Network [Sun, 10 Sep 2023 08:33:33 +0000 (10:33 +0200)]
Move the OS detection to configure.ac script to set the use of clock_realtime

14 months agoFix deprected github action ubuntu-18.04 to ubuntu-22.04
German Service Network [Fri, 15 Sep 2023 19:41:42 +0000 (21:41 +0200)]
Fix deprected github action ubuntu-18.04 to ubuntu-22.04

14 months agoChecking obsolete macro AC_PROG_CC_STDC as of autoconf-2.70
German Service Network [Wed, 1 Nov 2023 07:39:57 +0000 (08:39 +0100)]
Checking obsolete macro AC_PROG_CC_STDC as of autoconf-2.70

14 months agoChecking obsolete macro AC_GNU_SOURCE as of autoconf-2.62
German Service Network [Sat, 30 Sep 2023 19:12:59 +0000 (21:12 +0200)]
Checking obsolete macro AC_GNU_SOURCE as of autoconf-2.62

16 months agoRemove dockerfile from root
darless [Thu, 31 Aug 2023 15:28:21 +0000 (10:28 -0500)]
Remove dockerfile from root

16 months agoMove to contrib folder
darless1 [Tue, 6 Dec 2022 19:03:16 +0000 (13:03 -0600)]
Move to contrib folder

16 months agoDockerfile for fping
darless1 [Tue, 6 Dec 2022 18:52:41 +0000 (12:52 -0600)]
Dockerfile for fping

16 months agoRepair the faulty test 15
German Service Network [Sun, 3 Sep 2023 07:30:06 +0000 (09:30 +0200)]
Repair the faulty test 15

16 months agoremove host from netdata chart titles
ilyam8 [Tue, 12 Apr 2022 07:35:14 +0000 (10:35 +0300)]
remove host from netdata chart titles

16 months agoremove www
ilyam8 [Wed, 1 Jun 2022 16:33:24 +0000 (19:33 +0300)]
remove www

16 months agoupdate netdata link
ilyam8 [Wed, 1 Jun 2022 16:29:55 +0000 (19:29 +0300)]
update netdata link

16 months agoUpdating documentation regarding root requirements since for --file parameter
Vincent OLLIVIER [Sun, 27 Nov 2022 04:08:37 +0000 (23:08 -0500)]
Updating documentation regarding root requirements since for --file parameter

16 months agofping: Initialize msghdr struct in a portable way
Khem Raj [Mon, 29 Aug 2022 22:41:51 +0000 (15:41 -0700)]
fping: Initialize msghdr struct in a portable way

Initializing the structure assuming glibc layout results in
compile errors on musl, therefore do partial intialization and then
assigning the members individually.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
16 months agoTest for fping: add option to exit immediately once N hosts have been found
German Service Network [Sun, 31 Jul 2022 06:53:57 +0000 (08:53 +0200)]
Test for fping: add option to exit immediately once N hosts have been found

16 months agofping: add option to exit immeditely once N hosts have been found
German Service Network [Sat, 30 Jul 2022 10:39:54 +0000 (12:39 +0200)]
fping: add option to exit immeditely once N hosts have been found

16 months agoFixing build warning long int on seqmap.c line 84
German Service Network [Sun, 24 Jul 2022 08:54:38 +0000 (10:54 +0200)]
Fixing build warning long int on seqmap.c line 84

16 months agoOpenBSD is not affected by the "broken alpha headers" bug, too.
German Service Network [Sun, 28 May 2023 19:03:22 +0000 (21:03 +0200)]
OpenBSD is not affected by the "broken alpha headers" bug, too.

16 months agoFallback to SO_TIMESTAMP if SO_TIMESTAMPNS is not available
German Service Network [Sat, 19 Aug 2023 20:12:26 +0000 (22:12 +0200)]
Fallback to SO_TIMESTAMP if SO_TIMESTAMPNS is not available

2 years agocorrectly call getnameinfo()
David Schweikert [Fri, 21 Oct 2022 13:34:37 +0000 (15:34 +0200)]
correctly call getnameinfo()

2 years agoreformat
David Schweikert [Fri, 21 Oct 2022 13:31:19 +0000 (15:31 +0200)]
reformat

2 years agoNetBSD/alpha is not affected by the "broken alpha headers" bug.
Thomas Klausner [Fri, 13 May 2022 04:49:52 +0000 (06:49 +0200)]
NetBSD/alpha is not affected by the "broken alpha headers" bug.

2 years agofix socket4 vs socket6 typo (#249, thanks @sfan5)
David Schweikert [Sat, 5 Mar 2022 15:58:47 +0000 (16:58 +0100)]
fix socket4 vs socket6 typo (#249, thanks @sfan5)

2 years agofix unprivileged ping broken in v5.1 (fixes #248)
David Schweikert [Sun, 13 Feb 2022 16:45:57 +0000 (17:45 +0100)]
fix unprivileged ping broken in v5.1 (fixes #248)

2 years agoupdate changelog and 5.1 release date
David Schweikert [Sun, 6 Feb 2022 13:20:39 +0000 (14:20 +0100)]
update changelog and 5.1 release date

2 years agoUpdate autotools and fix code coverage issues.
David Schweikert [Sun, 6 Feb 2022 12:55:40 +0000 (13:55 +0100)]
Update autotools and fix code coverage issues.

2 years agoadd missing files to autoclean.sh
Erik Auerswald [Sat, 5 Feb 2022 11:41:00 +0000 (12:41 +0100)]
add missing files to autoclean.sh

At least on my system (Ubuntu GNU/Linux 18.04.6 LTS), autoclean.sh
misses three files: compile, doc/Makefile, and src/Makefile.  Add
them.

2 years agoRemove dublicate include time.h entry
German Service Network [Sun, 6 Feb 2022 11:40:47 +0000 (12:40 +0100)]
Remove dublicate include time.h entry

2 years agoGH action test
David Schweikert [Sun, 23 Jan 2022 17:04:19 +0000 (18:04 +0100)]
GH action test

2 years agoCreate codeql-analysis.yml (#241)
David Schweikert [Sun, 30 Jan 2022 20:41:45 +0000 (21:41 +0100)]
Create codeql-analysis.yml (#241)

Create codeql-analysis.yml

2 years agoMerge pull request #240 from auerswal/doc-fixes
David Schweikert [Sun, 30 Jan 2022 17:02:08 +0000 (18:02 +0100)]
Merge pull request #240 from auerswal/doc-fixes

Documentation improvements

2 years agoImprove -Q documentation
Erik Auerswald [Sun, 30 Jan 2022 12:30:05 +0000 (13:30 +0100)]
Improve -Q documentation

The `-Q, --squiet=SECS` option does not replace the summary
statistics of `-q, --quiets`, but adds interval summary
statistics every SECS seconds to the output.

2 years agoImprove -d and -n documentation
Erik Auerswald [Sun, 30 Jan 2022 12:10:29 +0000 (13:10 +0100)]
Improve -d and -n documentation

* Adjust `fping.pod` entries for `-d, --rdns` and `-n, --name`:

  * The code performs reverse DNS lookups on the given targets,
    not on source addresses from ICMP Echo Responses or ICMP
    error messages.  Adjust the `-d` description to reflect this.

  * The sentence describing `-n` seems incomplete, so provide a
    completion in similar spirit to `-d`.

* Add `-d, --rdns` to `-h, --help` output since `-d` and `-n` are
  no longer equivalent.

3 years agoMerge pull request #236 from schweikert/travis-fix
David Schweikert [Fri, 31 Dec 2021 16:44:28 +0000 (17:44 +0100)]
Merge pull request #236 from schweikert/travis-fix

Prepare 5.1 release

3 years agoprepare 5.1 release
David Schweikert [Thu, 30 Dec 2021 11:49:56 +0000 (12:49 +0100)]
prepare 5.1 release

3 years agomore travis stability fixes
David Schweikert [Thu, 30 Dec 2021 13:41:35 +0000 (14:41 +0100)]
more travis stability fixes

3 years agoskip timing test on macos
David Schweikert [Thu, 30 Dec 2021 11:30:23 +0000 (12:30 +0100)]
skip timing test on macos

3 years agoMerge pull request #217 from gsnw/bug/203
David Schweikert [Fri, 31 Dec 2021 16:12:05 +0000 (17:12 +0100)]
Merge pull request #217 from gsnw/bug/203

Fixed wrong timestamp under Free- and OpenBSD and macOS

3 years agoFixed wrong timestamp under Free- and OpenBSD and macOS
German Service Network [Fri, 12 Mar 2021 21:27:59 +0000 (22:27 +0100)]
Fixed wrong timestamp under Free- and OpenBSD and macOS

3 years agoMerge pull request #227 from aafbsd/patch-1
David Schweikert [Thu, 30 Dec 2021 09:29:08 +0000 (10:29 +0100)]
Merge pull request #227 from aafbsd/patch-1

fix getnameinfo

3 years agoMerge pull request #229 from gsnw/bug/219
David Schweikert [Thu, 30 Dec 2021 09:27:42 +0000 (10:27 +0100)]
Merge pull request #229 from gsnw/bug/219

use formatstring macro PRId64 in print_netdata for output int64_t

3 years agoMerge pull request #235 from schweikert/travis-fix
David Schweikert [Thu, 30 Dec 2021 09:26:22 +0000 (10:26 +0100)]
Merge pull request #235 from schweikert/travis-fix

make travis testing more robust

3 years agofix travis build
David Schweikert [Wed, 29 Dec 2021 14:50:29 +0000 (15:50 +0100)]
fix travis build

3 years agoMerge pull request #232 from zdyxry/spec
David Schweikert [Sun, 21 Nov 2021 12:26:27 +0000 (13:26 +0100)]
Merge pull request #232 from zdyxry/spec

Use setcap to specify specific files

3 years agoUse setcap to specify specific files
Yiran Zhou [Sat, 20 Nov 2021 00:23:34 +0000 (08:23 +0800)]
Use setcap to specify specific files

3 years agoMerge pull request #226 from k0ste/help
David Schweikert [Wed, 22 Sep 2021 06:46:37 +0000 (08:46 +0200)]
Merge pull request #226 from k0ste/help

Netdata feature: use host instead name as family label

3 years agouse formatstring macro PRId64 in print_netdata for output int64_t
German Service Network [Sat, 14 Aug 2021 10:44:02 +0000 (12:44 +0200)]
use formatstring macro PRId64 in print_netdata for output int64_t

3 years agoUpdate fping.c
aafbsd [Sat, 7 Aug 2021 09:51:04 +0000 (11:51 +0200)]
Update fping.c

getnameinfo() was not called properly for IPv4 (didn't check v6).
Additionally, one might also want to check the result code, call gai_strerror() and inform the user if s.th. goes wrong

3 years agoMerge pull request #215 from normanr/develop
David Schweikert [Sat, 7 Aug 2021 06:33:55 +0000 (08:33 +0200)]
Merge pull request #215 from normanr/develop

Allow -4 option to be given multiple times when IPv6 is enabled.

3 years agoNetdata feature: use host instead name as family label
Konstantin Shalygin [Fri, 6 Aug 2021 17:29:30 +0000 (20:29 +0300)]
Netdata feature: use host instead name as family label

Fixes https://github.com/netdata/netdata/issues/11336

3 years agoMerge pull request #208 from timgates42/bugfix_typo_permanently
David Schweikert [Sun, 18 Jul 2021 15:45:56 +0000 (17:45 +0200)]
Merge pull request #208 from timgates42/bugfix_typo_permanently

docs: fix simple typo, permanetly -> permanently

3 years agoAllow -4 option to be given multiple times when IPv6 is enabled.
Norman Rasmussen [Mon, 1 Mar 2021 06:28:44 +0000 (22:28 -0800)]
Allow -4 option to be given multiple times when IPv6 is enabled.

4 years agodocs: fix simple typo, permanetly -> permanently
Tim Gates [Wed, 16 Dec 2020 19:12:56 +0000 (06:12 +1100)]
docs: fix simple typo, permanetly -> permanently

There is a small typo in src/fping.c.

Should read `permanently` rather than `permanetly`.

4 years agoMerge pull request #200 from simetnicbr/for-upstream/privileged-SO_BINDTODEVICE
David Schweikert [Sat, 17 Oct 2020 06:37:53 +0000 (08:37 +0200)]
Merge pull request #200 from simetnicbr/for-upstream/privileged-SO_BINDTODEVICE

fping: retain privileges until after privileged setsockopt

4 years agoMerge pull request #198 from dinoex/develop
David Schweikert [Sat, 17 Oct 2020 06:29:00 +0000 (08:29 +0200)]
Merge pull request #198 from dinoex/develop

- fix regression introduced in fping 4.3

4 years agoMerge pull request #197 from gsnw/develop
David Schweikert [Sat, 17 Oct 2020 06:27:44 +0000 (08:27 +0200)]
Merge pull request #197 from gsnw/develop

Update Azure Pipline based on travis-ci tuning

4 years agofping: retain privileges until after privileged setsockopt
Henrique de Moraes Holschuh [Mon, 24 Aug 2020 23:00:53 +0000 (20:00 -0300)]
fping: retain privileges until after privileged setsockopt

On Linux, one needs privileges to setsockopt(SO_BINDTODEVICE), and the
current code would drop setuid root privileges too soon.

Temporarily drop privileges instead, and raise them back to issue the
privileged setsockopt().  Once we know we won't need to do any further
privileged setsockopt(), permanently drop privileges.

For now, assume SO_BINDTODEVICE is the only setsockopt that needs this.

4 years ago- fix regression introduced in fping 4.3
Dirk Meyer [Thu, 20 Aug 2020 06:13:42 +0000 (08:13 +0200)]
- fix regression introduced in fping 4.3
bind to source only when option was set.
this allows to work in jails and lxc with custom IPs.
this allows IPv4 only and IPv6 only hosts

4 years agoUpdate Azure Pipline based on travis-ci tuning
German Service Network [Fri, 7 Aug 2020 18:30:11 +0000 (20:30 +0200)]
Update Azure Pipline based on travis-ci tuning

4 years agosmall fixes to changelog
David Schweikert [Wed, 5 Aug 2020 12:24:16 +0000 (14:24 +0200)]
small fixes to changelog

4 years agotravis-ci: fix deploy stage
David Schweikert [Wed, 5 Aug 2020 11:05:20 +0000 (14:05 +0300)]
travis-ci: fix deploy stage

4 years agotravis-ci: fix deploy stage
David Schweikert [Wed, 5 Aug 2020 10:59:46 +0000 (13:59 +0300)]
travis-ci: fix deploy stage

4 years agoprepare 5.0 release
David Schweikert [Wed, 5 Aug 2020 10:50:32 +0000 (13:50 +0300)]
prepare 5.0 release

4 years agomove coverity scan to a script, so that it doesn't run for every job
David Schweikert [Wed, 5 Aug 2020 06:16:49 +0000 (09:16 +0300)]
move coverity scan to a script, so that it doesn't run for every job

4 years agochange license field in fping.spec to something that seems better matching, fixes...
David Schweikert [Wed, 5 Aug 2020 06:15:23 +0000 (09:15 +0300)]
change license field in fping.spec to something that seems better matching, fixes #192

4 years agomove coverity scan to a script, so that it doesn't run for every job
David Schweikert [Wed, 5 Aug 2020 06:08:53 +0000 (09:08 +0300)]
move coverity scan to a script, so that it doesn't run for every job

4 years agomove coverity scan to a script, so that it doesn't run for every job
David Schweikert [Wed, 5 Aug 2020 06:01:38 +0000 (09:01 +0300)]
move coverity scan to a script, so that it doesn't run for every job

4 years agoupdate coverage badge link
David Schweikert [Wed, 5 Aug 2020 05:22:04 +0000 (08:22 +0300)]
update coverage badge link

4 years agouse int64_t for time-related variables
David Schweikert [Wed, 5 Aug 2020 04:59:42 +0000 (07:59 +0300)]
use int64_t for time-related variables

4 years agoremove debug output
David Schweikert [Tue, 4 Aug 2020 12:30:41 +0000 (15:30 +0300)]
remove debug output