Change the project's website to http://noping.cc/ everywhere.
authorFlorian Forster <ff@octo.it>
Thu, 27 Nov 2014 07:52:23 +0000 (08:52 +0100)
committerFlorian Forster <ff@octo.it>
Thu, 27 Nov 2014 07:52:23 +0000 (08:52 +0100)
Also change my preferred email address.

16 files changed:
README
bindings/perl/Makefile.PL
bindings/perl/Oping.xs
bindings/perl/README
bindings/perl/lib/Net/Oping.pm
src/mans/liboping.pod
src/mans/oping.pod
src/mans/ping_construct.pod
src/mans/ping_get_error.pod
src/mans/ping_host_add.pod
src/mans/ping_iterator_get.pod
src/mans/ping_iterator_get_context.pod
src/mans/ping_iterator_get_info.pod
src/mans/ping_send.pod
src/mans/ping_setopt.pod
src/oping.c

diff --git a/README b/README
index 95ae19b..8611d7c 100644 (file)
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
  liboping – Library to ping IPv4 and IPv6 hosts in parallel
 ════════════════════════════════════════════════════════════
  liboping – Library to ping IPv4 and IPv6 hosts in parallel
 ════════════════════════════════════════════════════════════
-http://verplant.org/liboping/
+http://noping.cc/
 
 About
 ━━━━━
 
 About
 ━━━━━
index 5525dd0..98f93d8 100644 (file)
@@ -123,7 +123,7 @@ WriteMakefile(
     PREREQ_PM         => {},
     ($] >= 5.005
      ? (ABSTRACT_FROM => 'lib/Net/Oping.pm',
     PREREQ_PM         => {},
     ($] >= 5.005
      ? (ABSTRACT_FROM => 'lib/Net/Oping.pm',
-        AUTHOR        => 'Florian Forster <octo@verplant.org>')
+        AUTHOR        => 'Florian Forster <ff@octo.it>')
      : ()),
     ($OPING_DEPEND ? (depend => $OPING_DEPEND) : ()),
     LIBS              => [$OPING_LIBS],
      : ()),
     ($OPING_DEPEND ? (depend => $OPING_DEPEND) : ()),
     LIBS              => [$OPING_LIBS],
index 5731d3d..c88e3dc 100644 (file)
@@ -19,7 +19,7 @@
  *
  * Authors:
  *   Olivier Fredj <ofredj at proxad.net>
  *
  * Authors:
  *   Olivier Fredj <ofredj at proxad.net>
- *   Florian octo Forster <octo at verplant.org>
+ *   Florian octo Forster <ff at octo.it>
  */
 #include "EXTERN.h"
 #include "perl.h"
  */
 #include "EXTERN.h"
 #include "perl.h"
index 4d51a96..040a38a 100644 (file)
@@ -28,13 +28,13 @@ INSTALLATION
 DEPENDENCIES
 
   This module requires the "oping" library to be installed. The library is
 DEPENDENCIES
 
   This module requires the "oping" library to be installed. The library is
-  available at <http://verplant.org/liboping/>.
+  available at <http://noping.cc/>.
 
 COPYRIGHT AND LICENSE
 
   Copyright (C) 2007 by Olivier Fredj <ofredj at proxad.net>
 
 
 COPYRIGHT AND LICENSE
 
   Copyright (C) 2007 by Olivier Fredj <ofredj at proxad.net>
 
-  Copyright (C) 2008,2009 by Florian Forster <octo at verplant.org>
+  Copyright (C) 2008,2009 by Florian Forster <ff at octo.it>
 
   This library is free software; you can redistribute it and/or modify it
   under the same terms as Perl itself, either Perl version 5.8.7 or, at your
 
   This library is free software; you can redistribute it and/or modify it
   under the same terms as Perl itself, either Perl version 5.8.7 or, at your
index bc109dc..ba67f73 100644 (file)
@@ -19,7 +19,7 @@
 #
 # Authors:
 #   Olivier Fredj <ofredj at proxad.net>
 #
 # Authors:
 #   Olivier Fredj <ofredj at proxad.net>
-#   Florian octo Forster <octo at verplant.org>
+#   Florian octo Forster <ff at octo.it>
 #
 
 package Net::Oping;
 #
 
 package Net::Oping;
@@ -41,11 +41,11 @@ Net::Oping - ICMP latency measurement module using the oping library.
 =head1 DESCRIPTION
 
 This Perl module is a high-level interface to the
 =head1 DESCRIPTION
 
 This Perl module is a high-level interface to the
-L<oping library|http://verplant.org/liboping/>. Its purpose it to send
-C<ICMP ECHO_REQUEST> packets (also known as "ping") to a host and measure the
-time that elapses until the reception of an C<ICMP ECHO_REPLY> packet (also
-known as "pong"). If no such packet is received after a certain timeout the
-host is considered to be unreachable.
+L<oping library|http://noping.cc/>. Its purpose it to send C<ICMP ECHO_REQUEST>
+packets (also known as "ping") to a host and measure the time that elapses
+until the reception of an C<ICMP ECHO_REPLY> packet (also known as "pong"). If
+no such packet is received after a certain timeout the host is considered to be
+unreachable.
 
 The used I<oping> library supports "ping"ing multiple hosts in parallel and
 works with IPv4 and IPv6 transparently. Other advanced features that are
 
 The used I<oping> library supports "ping"ing multiple hosts in parallel and
 works with IPv4 and IPv6 transparently. Other advanced features that are
@@ -432,7 +432,7 @@ superuser or, under Linux, needs the C<CAP_NET_RAW> capability.
 
 L<liboping(3)>
 
 
 L<liboping(3)>
 
-The I<liboping> homepage may be found at L<http://verplant.org/liboping/>.
+The I<liboping> homepage may be found at L<http://noping.cc/>.
 Information about its mailing list may be found at
 L<http://mailman.verplant.org/listinfo/liboping>.
 
 Information about its mailing list may be found at
 L<http://mailman.verplant.org/listinfo/liboping>.
 
@@ -445,8 +445,7 @@ Perl interface by Florian Forster.
 
 Copyright (C) 2007 by Olivier Fredj E<lt>ofredjE<nbsp>atE<nbsp>proxad.netE<gt>
 
 
 Copyright (C) 2007 by Olivier Fredj E<lt>ofredjE<nbsp>atE<nbsp>proxad.netE<gt>
 
-Copyright (C) 2008,2009 by Florian Forster
-E<lt>octoE<nbsp>atE<nbsp>verplant.orgE<gt>
+Copyright (C) 2008,2009 by Florian Forster E<lt>ffE<nbsp>atE<nbsp>octo.itE<gt>
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.8.7 or,
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.8.7 or,
index 15b8ccf..426b189 100644 (file)
@@ -80,7 +80,7 @@ applicable.
 
 =head1 AUTHOR
 
 
 =head1 AUTHOR
 
-liboping is written by Florian "octo" Forster E<lt>octo at verplant.orgE<gt>.
-Its homepage can be found at L<http://verplant.org/liboping/>.
+liboping is written by Florian "octo" Forster E<lt>ff at octo.itE<gt>.
+Its homepage can be found at L<http://noping.cc/>.
 
 Copyright (c) 2005-2011 by Florian "octo" Forster.
 
 Copyright (c) 2005-2011 by Florian "octo" Forster.
index c001451..df6dae8 100644 (file)
@@ -263,6 +263,6 @@ L<ping(8)>, L<http://www.fping.com/>, L<liboping(3)>
 =head1 AUTHOR
 
 liboping is written by Florian "octo" Forster E<lt>ff at octo.itE<gt>.
 =head1 AUTHOR
 
 liboping is written by Florian "octo" Forster E<lt>ff at octo.itE<gt>.
-Its homepage can be found at L<http://verplant.org/liboping/>.
+Its homepage can be found at L<http://noping.cc/>.
 
 Copyright (c) 2005-2011 by Florian "octo" Forster.
 
 Copyright (c) 2005-2011 by Florian "octo" Forster.
index 46bb818..5f30938 100644 (file)
@@ -32,7 +32,7 @@ L<liboping(3)>
 
 =head1 AUTHOR
 
 
 =head1 AUTHOR
 
-liboping is written by Florian "octo" Forster E<lt>octo at verplant.orgE<gt>.
-Its homepage can be found at L<http://verplant.org/liboping/>.
+liboping is written by Florian "octo" Forster E<lt>ff at octo.itE<gt>.
+Its homepage can be found at L<http://noping.cc/>.
 
 Copyright (c) 2005-2011 by Florian "octo" Forster.
 
 Copyright (c) 2005-2011 by Florian "octo" Forster.
index ed1020c..0761d40 100644 (file)
@@ -24,7 +24,7 @@ L<liboping(3)>
 
 =head1 AUTHOR
 
 
 =head1 AUTHOR
 
-liboping is written by Florian "octo" Forster E<lt>octo at verplant.orgE<gt>.
-Its homepage can be found at L<http://verplant.org/liboping/>.
+liboping is written by Florian "octo" Forster E<lt>ff at octo.itE<gt>.
+Its homepage can be found at L<http://noping.cc/>.
 
 Copyright (c) 2005-2011 by Florian "octo" Forster.
 
 Copyright (c) 2005-2011 by Florian "octo" Forster.
index 39ce64a..77cb444 100644 (file)
@@ -46,7 +46,7 @@ L<liboping(3)>
 
 =head1 AUTHOR
 
 
 =head1 AUTHOR
 
-liboping is written by Florian "octo" Forster E<lt>octo at verplant.orgE<gt>.
-Its homepage can be found at L<http://verplant.org/liboping/>.
+liboping is written by Florian "octo" Forster E<lt>ff at octo.itE<gt>.
+Its homepage can be found at L<http://noping.cc/>.
 
 Copyright (c) 2005-2011 by Florian "octo" Forster.
 
 Copyright (c) 2005-2011 by Florian "octo" Forster.
index 220410e..0add4e0 100644 (file)
@@ -44,7 +44,7 @@ L<liboping(3)>
 
 =head1 AUTHOR
 
 
 =head1 AUTHOR
 
-liboping is written by Florian "octo" Forster E<lt>octo at verplant.orgE<gt>.
-Its homepage can be found at L<http://verplant.org/liboping/>.
+liboping is written by Florian "octo" Forster E<lt>ff at octo.itE<gt>.
+Its homepage can be found at L<http://noping.cc/>.
 
 Copyright (c) 2005-2011 by Florian "octo" Forster.
 
 Copyright (c) 2005-2011 by Florian "octo" Forster.
index 23680d2..c750a49 100644 (file)
@@ -39,7 +39,7 @@ L<liboping(3)>
 
 =head1 AUTHOR
 
 
 =head1 AUTHOR
 
-liboping is written by Florian "octo" Forster E<lt>octo at verplant.orgE<gt>.
-Its homepage can be found at L<http://verplant.org/liboping/>.
+liboping is written by Florian "octo" Forster E<lt>ff at octo.itE<gt>.
+Its homepage can be found at L<http://noping.cc/>.
 
 Copyright (c) 2005-2011 by Florian "octo" Forster.
 
 Copyright (c) 2005-2011 by Florian "octo" Forster.
index 4eab175..07e7590 100644 (file)
@@ -129,7 +129,7 @@ L<liboping(3)>
 
 =head1 AUTHOR
 
 
 =head1 AUTHOR
 
-liboping is written by Florian "octo" Forster E<lt>octo at verplant.orgE<gt>.
-Its homepage can be found at L<http://verplant.org/liboping/>.
+liboping is written by Florian "octo" Forster E<lt>ff at octo.itE<gt>.
+Its homepage can be found at L<http://noping.cc/>.
 
 Copyright (c) 2005-2011 by Florian "octo" Forster.
 
 Copyright (c) 2005-2011 by Florian "octo" Forster.
index 439e273..9ad5623 100644 (file)
@@ -36,7 +36,7 @@ L<liboping(3)>
 
 =head1 AUTHOR
 
 
 =head1 AUTHOR
 
-liboping is written by Florian "octo" Forster E<lt>octo at verplant.orgE<gt>.
-Its homepage can be found at L<http://verplant.org/liboping/>.
+liboping is written by Florian "octo" Forster E<lt>ff at octo.itE<gt>.
+Its homepage can be found at L<http://noping.cc/>.
 
 Copyright (c) 2005-2011 by Florian "octo" Forster.
 
 Copyright (c) 2005-2011 by Florian "octo" Forster.
index 5331467..11c63d8 100644 (file)
@@ -92,7 +92,7 @@ L<liboping(3)>
 
 =head1 AUTHOR
 
 
 =head1 AUTHOR
 
-liboping is written by Florian "octo" Forster E<lt>octo at verplant.orgE<gt>.
-Its homepage can be found at L<http://verplant.org/liboping/>.
+liboping is written by Florian "octo" Forster E<lt>ff at octo.itE<gt>.
+Its homepage can be found at L<http://noping.cc/>.
 
 Copyright (c) 2005-2011 by Florian "octo" Forster.
 
 Copyright (c) 2005-2011 by Florian "octo" Forster.
index e6be877..28f761c 100644 (file)
@@ -444,8 +444,8 @@ static void usage_exit (const char *name, int status) /* {{{ */
                        "  -Z percent   Exit with non-zero exit status if more than this percentage of\n"
                        "               probes timed out. (default: never)\n"
 
                        "  -Z percent   Exit with non-zero exit status if more than this percentage of\n"
                        "               probes timed out. (default: never)\n"
 
-                       "\noping "PACKAGE_VERSION", http://verplant.org/liboping/\n"
-                       "by Florian octo Forster <octo@verplant.org>\n"
+                       "\noping "PACKAGE_VERSION", http://noping.cc/\n"
+                       "by Florian octo Forster <ff@octo.it>\n"
                        "for contributions see `AUTHORS'\n",
                        name);
        exit (status);
                        "for contributions see `AUTHORS'\n",
                        name);
        exit (status);