From e67d7327869b9e7e91cdf1971670d29c8bd22e64 Mon Sep 17 00:00:00 2001 From: Hamish Coleman Date: Tue, 9 May 2017 09:32:04 +0800 Subject: [PATCH] Add perl binding and documentation for new ping_iterator_count function --- bindings/perl/Oping.xs | 8 ++++++++ src/mans/liboping.pod | 1 + src/mans/ping_iterator_count.pod | 33 ++++++++++++++++++++++++++++++++ 3 files changed, 42 insertions(+) create mode 100644 src/mans/ping_iterator_count.pod diff --git a/bindings/perl/Oping.xs b/bindings/perl/Oping.xs index c88e3dc..5d8fa40 100644 --- a/bindings/perl/Oping.xs +++ b/bindings/perl/Oping.xs @@ -134,6 +134,14 @@ _ping_iterator_next (iter) OUTPUT: RETVAL +int +_ping_iterator_count (obj) + pingobj_t *obj + CODE: + RETVAL = ping_iterator_count (obj); + OUTPUT: + RETVAL + double _ping_iterator_get_latency (iter) pingobj_iter_t *iter diff --git a/src/mans/liboping.pod b/src/mans/liboping.pod index c36a89c..7eb987e 100644 --- a/src/mans/liboping.pod +++ b/src/mans/liboping.pod @@ -69,6 +69,7 @@ L, L, L, L, +L, L, L, L diff --git a/src/mans/ping_iterator_count.pod b/src/mans/ping_iterator_count.pod new file mode 100644 index 0000000..ab6e3a1 --- /dev/null +++ b/src/mans/ping_iterator_count.pod @@ -0,0 +1,33 @@ +=head1 NAME + +ping_iterator_count - Count the number of hosts in a liboping object + +=head1 SYNOPSIS + + #include + + int ping_iterator_count (pingobj_t *obj); + +=head1 DESCRIPTION + +This functions is used to count the number of hosts currently associated +with a liboping object. + +=head1 RETURN VALUE + +The B returns an integer number or zero if no host is +associated with I. + +=head1 SEE ALSO + +L, +L, +L, +L + +=head1 AUTHOR + +liboping is written by Florian "octo" Forster Eff at octo.itE. +Its homepage can be found at L. + +Copyright (c) 2005-2016 by Florian "octo" Forster. -- 2.30.2