summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6f3b7d9)
raw | patch | inline | side by side (parent: 6f3b7d9)
author | Sebastian Harl <sh@tokkee.org> | |
Fri, 17 Jul 2009 12:14:18 +0000 (14:14 +0200) | ||
committer | Florian Forster <sifnfors@stud.informatik.uni-erlangen.de> | |
Fri, 17 Jul 2009 12:50:30 +0000 (14:50 +0200) |
This option sets the outgoing network device to use.
I decided not to reuse the -I command line option for that purpose (which is
what GNU ping is doing), for the following reasons:
* In theory, an interface name could be confused with a host name.
* Imho, it's better to specify things explicitly.
* This approach is more flexible.
I decided not to reuse the -I command line option for that purpose (which is
what GNU ping is doing), for the following reasons:
* In theory, an interface name could be confused with a host name.
* Imho, it's better to specify things explicitly.
* This approach is more flexible.
src/mans/oping.pod | patch | blob | history | |
src/oping.c | patch | blob | history |
diff --git a/src/mans/oping.pod b/src/mans/oping.pod
index 29784a859b3c4e008bec5a0ff78b349a9833ec6d..8a3cb58cc1cdb15783bcdfac69c36f5e7b75c64b 100644 (file)
--- a/src/mans/oping.pod
+++ b/src/mans/oping.pod
=item B<-I> I<address>
-Set the source address to use. You B<cannot> pass the interface name, as you
-can with GNU's L<ping(8)>.
+Set the source address to use. You may either specify an IP number or a
+hostname. You B<cannot> pass the interface name, as you can with GNU's
+L<ping(8)> - use the B<-D> option for that purpose.
+
+=item B<-D> I<interface name>
+
+Set the outgoing network device to use.
=item B<-f> I<filename>
diff --git a/src/oping.c b/src/oping.c
index a1dbade1f22af3d573f42d330a9b37b7b8f100dd..fc4cb5faeb5f9cdbd393188ca8596e8d2db5bc43 100644 (file)
--- a/src/oping.c
+++ b/src/oping.c
static double opt_interval = 1.0;
static int opt_addrfamily = PING_DEF_AF;
static char *opt_srcaddr = NULL;
+static char *opt_device = NULL;
static char *opt_filename = NULL;
static int opt_count = -1;
static int opt_send_ttl = 64;
" -i interval interval with which to send ICMP packets\n"
" -t ttl time to live for each ICMP packet\n"
" -I srcaddr source address\n"
+ " -D device outgoing interface name\n"
" -f filename filename to read hosts from\n"
"\noping "PACKAGE_VERSION", http://verplant.org/liboping/\n"
while (1)
{
- optchar = getopt (argc, argv, "46c:hi:I:t:f:");
+ optchar = getopt (argc, argv, "46c:hi:I:t:f:D:");
if (optchar == -1)
break;
}
break;
+ case 'D':
+ opt_device = optarg;
+ break;
+
case 't':
{
int new_send_ttl;
}
}
+ if (opt_device != NULL)
+ {
+ if (ping_setopt (ping, PING_OPT_DEVICE, (void *) opt_device) != 0)
+ {
+ fprintf (stderr, "Setting device failed: %s\n",
+ ping_get_error (ping));
+ }
+ }
+
if (opt_filename != NULL)
{
FILE *infile;