summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 88bc82a)
raw | patch | inline | side by side (parent: 88bc82a)
author | Dan Sully <daniel-github@electricrain.com> | |
Mon, 15 Jun 2009 19:17:53 +0000 (12:17 -0700) | ||
committer | Florian Forster <octo@verplant.org> | |
Wed, 15 Jul 2009 09:38:26 +0000 (11:38 +0200) |
Signed-off-by: Dan Sully <daniel-github@electricrain.com>
Signed-off-by: Florian Forster <octo@verplant.org>
Signed-off-by: Florian Forster <octo@verplant.org>
src/oping.c | patch | blob | history |
diff --git a/src/oping.c b/src/oping.c
index 0f39dc5b4d884005dd12bb4658f2bbc0d9ef2c81..3164230484a94f03e4eebb2175b5ae242b04b64c 100644 (file)
--- a/src/oping.c
+++ b/src/oping.c
int req_sent;
int req_rcvd;
-
+
double latency_min;
double latency_max;
double latency_total;
static double opt_interval = 1.0;
static int opt_addrfamily = PING_DEF_AF;
static char *opt_srcaddr = NULL;
+static char *opt_filename = NULL;
static int opt_count = -1;
static int opt_send_ttl = 64;
fprintf (stderr, "Usage: %s [-46] [-c count] [-i interval]\n"
"%*s[-t ttl] [-I srcaddr]\n"
- "%*shost [host [host ...]]\n",
+ "%*s-f filename | host [host [host ...]]\n",
name,
8 + name_length, "",
8 + name_length, "");
while (1)
{
- optchar = getopt (argc, argv, "46c:hi:I:t:");
+ optchar = getopt (argc, argv, "46c:hi:I:t:f:");
if (optchar == -1)
break;
}
break;
+ case 'f':
+ {
+ if (opt_filename != NULL)
+ free (opt_filename);
+ opt_filename = strdup (optarg);
+ }
+ break;
+
case 'i':
{
double new_interval;
size_t buffer_len;
size_t data_len;
ping_context_t *context;
-
+
latency = -1.0;
buffer_len = sizeof (latency);
ping_iterator_get_info (iter, PING_INFO_LATENCY,
optind = read_options (argc, argv);
- if (optind >= argc)
+ if (optind >= argc && !opt_filename) {
usage_exit (argv[0]);
+ }
if (geteuid () != 0)
{
}
}
+ if (opt_filename != NULL)
+ {
+ FILE *infile;
+ char line[256];
+ char host[256];
+
+ if (strncmp(opt_filename, "-", 1) == 0)
+ infile = fdopen(0, "r");
+ else
+ infile = fopen(opt_filename, "r");
+
+ if (!infile)
+ {
+ fprintf (stderr, "Couldn't open file for hostnames: %s\n", strerror(errno));
+ return (1);
+ }
+
+ while (fgets(line, sizeof(line), infile))
+ {
+ if (sscanf(line, "%s", host) != 1)
+ continue;
+
+ if ((!*host) || (host[0] == '#'))
+ continue;
+
+ if (ping_host_add(ping, host) < 0)
+ {
+ const char *errmsg = ping_get_error (ping);
+
+ fprintf (stderr, "Adding host `%s' failed: %s\n", host, errmsg);
+ continue;
+ }
+ }
+
+ fclose(infile);
+ }
+
for (i = optind; i < argc; i++)
{
if (ping_host_add (ping, argv[i]) < 0)