X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Foping.h;h=e53d1397b30ac1886eb769eb65e52abb3e6acc13;hb=69b69873c4196f84269af673f3b2fa71890f9714;hp=8d858fbc9a5490200bfa84bf758e91ab95783074;hpb=8d1c1159dc6f2a923f5c7f133c0fd07339456b90;p=liboping.git diff --git a/src/oping.h b/src/oping.h index 8d858fb..e53d139 100644 --- a/src/oping.h +++ b/src/oping.h @@ -1,6 +1,6 @@ /** * Object oriented C module to send ICMP and ICMPv6 `echo's. - * Copyright (C) 2006-2010 Florian octo Forster + * Copyright (C) 2006-2011 Florian octo Forster * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by the @@ -33,7 +33,7 @@ extern "C" { #endif -#define OPING_VERSION 1003003 +#define OPING_VERSION 1006001 /* * Type definitions @@ -52,12 +52,12 @@ typedef struct pingobj pingobj_t; #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_DEF_AF AF_UNSPEC -#define PING_DEF_DATA "Florian Forster http://verplant.org/" +#define PING_DEF_DATA "liboping -- ICMP ping library " /* * Method definitions @@ -85,7 +85,7 @@ pingobj_iter_t *ping_iterator_next (pingobj_iter_t *iter); #define PING_INFO_USERNAME 8 #define PING_INFO_DROPPED 9 #define PING_INFO_RECV_TTL 10 -#define PING_INFO_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);