summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 138ea1e)
raw | patch | inline | side by side (parent: 138ea1e)
author | Florian Forster <octo@verplant.org> | |
Wed, 27 Oct 2010 07:59:09 +0000 (09:59 +0200) | ||
committer | Florian Forster <octo@verplant.org> | |
Wed, 27 Oct 2010 08:04:54 +0000 (10:04 +0200) |
… and recommended for IPv4.
src/liboping.c | patch | blob | history | |
src/mans/ping_setopt.pod | patch | blob | history | |
src/oping.c | patch | blob | history | |
src/oping.h | patch | blob | history |
diff --git a/src/liboping.c b/src/liboping.c
index 6e8d7557cee95b8ed69c63deaa249d9d9c8ccf5a..a272e2cb92f7051ad964be0f20f67874fefc2b21 100644 (file)
--- a/src/liboping.c
+++ b/src/liboping.c
double latency;
uint32_t dropped;
int recv_ttl;
- uint8_t recv_tos;
+ uint8_t recv_qos;
char *data;
void *context;
double timeout;
int ttl;
int addrfamily;
- uint8_t tos;
+ uint8_t qos;
char *data;
struct sockaddr *srcaddr;
if (ptr != NULL){
ptr->recv_ttl = (int) ip_hdr->ip_ttl;
- ptr->recv_tos = (uint8_t) ip_hdr->ip_tos;
+ ptr->recv_qos = (uint8_t) ip_hdr->ip_tos;
}
return (ptr);
}
struct timeval diff;
pinghost_t *host = NULL;
int recv_ttl;
- uint8_t recv_tos;
+ uint8_t recv_qos;
/*
* Set up the receive buffer..
/* Iterate over all auxiliary data in msghdr */
recv_ttl = -1;
- recv_tos = 0xff;
+ recv_qos = 0xff;
for (cmsg = CMSG_FIRSTHDR (&msghdr); /* {{{ */
cmsg != NULL;
cmsg = CMSG_NXTHDR (&msghdr, cmsg))
if (cmsg->cmsg_type == IP_TOS)
{
- memcpy (&recv_tos, CMSG_DATA (cmsg),
- sizeof (recv_tos));
- dprintf ("TOSv4 = 0x%02"PRIx8";\n", recv_tos);
+ memcpy (&recv_qos, CMSG_DATA (cmsg),
+ sizeof (recv_qos));
+ dprintf ("TOSv4 = 0x%02"PRIx8";\n", recv_qos);
} else
if (cmsg->cmsg_type == IP_TTL)
{
if (cmsg->cmsg_type == IPV6_TCLASS)
{
- memcpy (&recv_tos, CMSG_DATA (cmsg),
- sizeof (recv_tos));
- dprintf ("TOSv6 = 0x%02"PRIx8";\n", recv_tos);
+ memcpy (&recv_qos, CMSG_DATA (cmsg),
+ sizeof (recv_qos));
+ dprintf ("TOSv6 = 0x%02"PRIx8";\n", recv_qos);
} else
if (cmsg->cmsg_type == IPV6_HOPLIMIT)
{
if (recv_ttl >= 0)
host->recv_ttl = recv_ttl;
- if (recv_tos != 0xffff)
- host->recv_tos = recv_tos;
+ if (recv_qos != 0xffff)
+ host->recv_qos = recv_qos;
host->latency = ((double) diff.tv_usec) / 1000.0;
host->latency += ((double) diff.tv_sec) * 1000.0;
* Using SOL_SOCKET / SO_PRIORITY might be a protocol independent way to
* set this. See socket(7) for details.
*/
-static int ping_set_tos (pingobj_t *obj, pinghost_t *ph, uint8_t tos)
+static int ping_set_qos (pingobj_t *obj, pinghost_t *ph, uint8_t qos)
{
int ret = EINVAL;
char errbuf[PING_ERRMSG_LEN];
if (ph->addrfamily == AF_INET)
{
- dprintf ("Setting TP_TOS to %#04"PRIx8"\n", tos);
+ dprintf ("Setting TP_TOS to %#04"PRIx8"\n", qos);
ret = setsockopt (ph->fd, IPPROTO_IP, IP_TOS,
- &tos, sizeof (tos));
+ &qos, sizeof (qos));
if (ret != 0)
{
ret = errno;
- ping_set_error (obj, "ping_set_tos",
+ ping_set_error (obj, "ping_set_qos",
sstrerror (ret, errbuf, sizeof (errbuf)));
dprintf ("Setting TP_TOS failed: %s\n", errbuf);
}
else if (ph->addrfamily == AF_INET6)
{
/* IPV6_TCLASS requires an "int". */
- int tmp = (int) tos;
+ int tmp = (int) qos;
- dprintf ("Setting IPV6_TCLASS to %#04"PRIx8" (%i)\n", tos, tmp);
+ dprintf ("Setting IPV6_TCLASS to %#04"PRIx8" (%i)\n", qos, tmp);
ret = setsockopt (ph->fd, IPPROTO_IPV6, IPV6_TCLASS,
&tmp, sizeof (tmp));
if (ret != 0)
{
ret = errno;
- ping_set_error (obj, "ping_set_tos",
+ ping_set_error (obj, "ping_set_qos",
sstrerror (ret, errbuf, sizeof (errbuf)));
dprintf ("Setting IPV6_TCLASS failed: %s\n", errbuf);
}
obj->ttl = PING_DEF_TTL;
obj->addrfamily = PING_DEF_AF;
obj->data = strdup (PING_DEF_DATA);
- obj->tos = 0;
+ obj->qos = 0;
return (obj);
}
switch (option)
{
- case PING_OPT_TOS:
+ case PING_OPT_QOS:
{
pinghost_t *ph;
- obj->tos = *((uint8_t *) value);
+ obj->qos = *((uint8_t *) value);
for (ph = obj->head; ph != NULL; ph = ph->next)
- ping_set_tos (obj, ph, obj->tos);
+ ping_set_qos (obj, ph, obj->qos);
break;
}
}
ping_set_ttl (ph, obj->ttl);
- ping_set_tos (obj, ph, obj->tos);
+ ping_set_qos (obj, ph, obj->qos);
return (0);
} /* int ping_host_add */
ret = 0;
break;
- case PING_INFO_RECV_TOS:
+ case PING_INFO_RECV_QOS:
ret = ENOMEM;
if (*buffer_len>sizeof(unsigned)) *buffer_len=sizeof(unsigned);
if (!*buffer_len) *buffer_len=1;
if (orig_buffer_len < *buffer_len)
break;
- memcpy(buffer,&iter->recv_tos,*buffer_len);
+ memcpy(buffer,&iter->recv_qos,*buffer_len);
ret = 0;
break;
}
index 70be1b6c11bca4d8a00e60b0dd9403fa9730fbea..582b3559b4231a734c8a0f0330103ba7810925a5 100644 (file)
--- a/src/mans/ping_setopt.pod
+++ b/src/mans/ping_setopt.pod
operating systems. In that case, B<ping_setopt> sets the error to
C<operation not supported>.
-=item B<PING_OPT_TOS>
+=item B<PING_OPT_QOS>
-Sets the I<Type of Service> flags that should be used when crafting ICMP and
+Sets the I<Quality of Service> flags that should be used when crafting ICMP and
ICMPv6 packets. The memory pointed to by I<val> is interpreted as a C<uint8_t>.
The byte is passed to L<setsockopt(2)> without modification, using the
C<IP_TOS> (IPv4) or C<IPV6_TCLASS> (IPv6) option. It is the caller's
-responsibility to chose a valid bit combination. For details, read L<ip(7)> and
-L<ipv6(7)>.
+responsibility to chose a valid bit combination. For details, read the L<ip(7)>
+and L<ipv6(7)> manual pages, as well as I<RFCE<nbsp>2474>.
=back
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/>.
-(c) 2005-2009 by Florian octo Forster.
+(c) 2005-2010 by Florian octo Forster.
diff --git a/src/oping.c b/src/oping.c
index 5c1d8a18fc91132afc42cce51b96e2815e30d6b7..240e7e7d306a266987f6ed38349841473075a407 100644 (file)
--- a/src/oping.c
+++ b/src/oping.c
recv_tos = 0;
buffer_len = sizeof (recv_tos);
- ping_iterator_get_info (iter, PING_INFO_RECV_TOS,
+ ping_iterator_get_info (iter, PING_INFO_RECV_QOS,
&recv_tos, &buffer_len);
data_len = 0;
opt_send_ttl, ping_get_error (ping));
}
- if (ping_setopt (ping, PING_OPT_TOS, &opt_send_qos) != 0)
+ if (ping_setopt (ping, PING_OPT_QOS, &opt_send_qos) != 0)
{
fprintf (stderr, "Setting TOS to %i failed: %s\n",
opt_send_qos, ping_get_error (ping));
diff --git a/src/oping.h b/src/oping.h
index 1ce94aa01be6fa5c2f7d9ab9a641bd4428b3cb9b..193543687ba6f331a3e49f8529500cedd07f125d 100644 (file)
--- a/src/oping.h
+++ b/src/oping.h
#define PING_OPT_DATA 0x08
#define PING_OPT_SOURCE 0x10
#define PING_OPT_DEVICE 0x20
-#define PING_OPT_TOS 0x40
+#define PING_OPT_QOS 0x40
#define PING_DEF_TIMEOUT 1.0
#define PING_DEF_TTL 255
#define PING_INFO_USERNAME 8
#define PING_INFO_DROPPED 9
#define PING_INFO_RECV_TTL 10
-#define PING_INFO_RECV_TOS 11
+#define PING_INFO_RECV_QOS 11
int ping_iterator_get_info (pingobj_iter_t *iter, int info,
void *buffer, size_t *buffer_len);