-
Notifications
You must be signed in to change notification settings - Fork 2
/
omping.h
125 lines (108 loc) · 2.92 KB
/
omping.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
* Copyright (c) 2010-2011, Red Hat, Inc.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND RED HAT, INC. DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL RED HAT, INC. BE LIABLE
* FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/*
* Author: Jan Friesse <[email protected]>
*/
#ifndef _OMPING_H_
#define _OMPING_H_
#include "aiifunc.h"
#include "rhfunc.h"
#include "sockfunc.h"
#ifdef __cplusplus
extern "C" {
#endif
#define PROGRAM_NAME "omping"
#define PROGRAM_VERSION "0.0.5"
#define PROGRAM_SERVER_INFO PROGRAM_NAME" "PROGRAM_VERSION
#define DEFAULT_PORT_S "4321"
#define DEFAULT_MCAST4_ADDR "232.43.211.234"
#define DEFAULT_MCAST6_ADDR "ff3e::4321:1234"
#define DEFAULT_WAIT_TIME 1000
#define DEFAULT_TTL 64
/*
* Default Wait For Finish multiply constant. wait_time is multiplied with following
* value.
*/
#define DEFAULT_WFF_TIME_MUL 3
/*
* Minimum number of elements in duplicate buffer
*/
#define MIN_DUP_BUF_ITEMS 1024
/*
* Default seconds which must be stored in duplicate buffer.
* This value is divided by ping interval in seconds. If value is smaller
* then MIN_DUP_BUF_ITEMS, then MIN_DUP_BUF_ITEMS is used.
*/
#define DUP_BUF_SECS (2 * 60)
/*
* Default burst value for rate limit GCRA
*/
#define GCRA_BURST 5
/*
* Minimum send and receive socket buffer size
*/
#define MIN_SNDBUF_SIZE 2048
#define MIN_RCVBUF_SIZE 2048
/*
* Protocol version used in messages
*/
#define PROTOCOL_VERSION 2
#define MAX_MSG_SIZE 65535
/*
* Operational mode of omping
*/
enum omping_op_mode {
OMPING_OP_MODE_NORMAL,
OMPING_OP_MODE_CLIENT,
OMPING_OP_MODE_SERVER,
OMPING_OP_MODE_SHOW_VERSION,
};
/*
* Structure with internal omping data. Should be filled by cli_parse and no longer modified outside
* omping_ functions.
*/
struct omping_instance {
struct ai_item local_addr;
struct ai_item mcast_addr;
struct rh_list remote_hosts;
struct aii_list remote_addrs;
enum omping_op_mode op_mode;
enum sf_transport_method transport_method;
char *local_ifname;
uint64_t send_count_queries;
int auto_exit;
int cont_stat;
int dup_buf_items;
int hn_max_len;
int ip_ver;
int mcast_socket;
int quiet;
int rate_limit_time;
int rcvbuf_size;
int single_addr;
int sndbuf_size;
int timeout_time;
int ucast_socket;
int wait_for_finish_time;
int wait_time;
unsigned int rh_no_active;
uint16_t port;
uint8_t ttl;
};
#ifdef __cplusplus
}
#endif
#endif /* _OMPING_H_ */