]> git.gsnw.org Git - fping.git/commitdiff
rename --min_reachable again to --reachable, and update changelog
authorDavid Schweikert <david@schweikert.ch>
Tue, 30 Oct 2018 19:15:35 +0000 (20:15 +0100)
committerDavid Schweikert <david@schweikert.ch>
Tue, 30 Oct 2018 19:15:35 +0000 (20:15 +0100)
CHANGELOG.md
doc/fping.pod
src/fping.c

index 3bf84293dd2b3f88b2dc5e67b574984d13b2f568..9053a6af9a591781df7ed0267488680d80de96b0 100644 (file)
@@ -1,6 +1,11 @@
 fping 4.2 (UNRELEASED)
 ======================
 
+## New features
+
+- New option -x / --reachable to check if the number of reachable hosts is >= a certain
+  number. Useful for example to implement connectivity-checks (#138, thanks @deepak0004)
+
 ## Bugfixes and other changes
 
 - Fix build with --disable-ipv6 (#134, thanks @Polynomial-C)
index 2805837c6833fd7203ad68dc9404ac5777af0fcd..13f242478e1e7b162589157e9f14b59e5e961bfa 100644 (file)
@@ -225,9 +225,10 @@ Show targets that are unreachable.
 
 Print B<fping> version information.
 
-=item B<-x>, B<--min_reachable>=I<N>
+=item B<-x>, B<--reachable>=I<N>
 
-Given a list of hosts, this mode prints if number of active hosts>=N or not.
+Given a list of hosts, this mode checks if number of reachable hosts is >= N
+and exits true in that case.
 
 =back
 
index 5454516d8992dbac8ce84110ccb7966ec626abe2..6260c73de1d5b45bc92e462dbd5ebb1d52fa222e 100644 (file)
@@ -419,7 +419,7 @@ int main(int argc, char** argv)
         { NULL, 'T', OPTPARSE_REQUIRED },
         { "unreach", 'u', OPTPARSE_NONE },
         { "version", 'v', OPTPARSE_NONE },
-        { "min_reachable", 'x', OPTPARSE_REQUIRED },
+        { "reachable", 'x', OPTPARSE_REQUIRED },
         { 0, 0, 0 }
     };
 
@@ -2788,6 +2788,6 @@ void usage(int is_error)
     fprintf(out, "   -s, --stats        print final stats\n");
     fprintf(out, "   -u, --unreach      show targets that are unreachable\n");
     fprintf(out, "   -v, --version      show version\n");
-    fprintf(out, "   -x, --min_reachable=N  shows if >=N hosts are reachable or not\n");
+    fprintf(out, "   -x, --reachable=N  shows if >=N hosts are reachable or not\n");
     exit(is_error);
-}
\ No newline at end of file
+}