oping.h | oping.h | |||
---|---|---|---|---|
skipping to change at line 27 | skipping to change at line 27 | |||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 US A | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 US A | |||
*/ | */ | |||
#ifndef OCTO_PING_H | #ifndef OCTO_PING_H | |||
#define OCTO_PING_H 1 | #define OCTO_PING_H 1 | |||
#if HAVE_CONFIG_H | #if HAVE_CONFIG_H | |||
# include <config.h> | # include <config.h> | |||
#endif | #endif | |||
#if HAVE_STDLIB_H | #include <stdlib.h> | |||
# include <stdlib.h> | #include <unistd.h> | |||
#endif | #include <sys/types.h> | |||
#if HAVE_UNISTD_H | #include <sys/socket.h> | |||
# include <unistd.h> | ||||
#endif | ||||
#if HAVE_SYS_TYPES_H | ||||
# include <sys/types.h> | ||||
#endif | ||||
#if HAVE_SYS_SOCKET_H | ||||
# include <sys/socket.h> | ||||
#endif | ||||
#ifdef __cplusplus | #ifdef __cplusplus | |||
extern "C" { | extern "C" { | |||
#endif | #endif | |||
#define OPING_VERSION 1003000 | #define OPING_VERSION 1003002 | |||
/* | /* | |||
* Type definitions | * Type definitions | |||
*/ | */ | |||
struct pinghost; | struct pinghost; | |||
typedef struct pinghost pinghost_t; | typedef struct pinghost pinghost_t; | |||
typedef pinghost_t pingobj_iter_t; | typedef pinghost_t pingobj_iter_t; | |||
struct pingobj; | struct pingobj; | |||
End of changes. 2 change blocks. | ||||
13 lines changed or deleted | 5 lines changed or added | |||