blob: f5c45c9e45f4b800da7975e3add8e6bf3fde682b (
plain)
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
|
enum glusterd_volume_status {
GLUSTERD_STATUS_NONE = 0,
GLUSTERD_STATUS_STARTED,
GLUSTERD_STATUS_STOPPED
} ;
struct gd1_mgmt_probe_req {
unsigned char uuid[16];
string hostname<>;
int port;
} ;
struct gd1_mgmt_probe_rsp {
unsigned char uuid[16];
string hostname<>;
int port;
int op_ret;
int op_errno;
string op_errstr<>;
} ;
struct gd1_mgmt_friend_req {
unsigned char uuid[16];
string hostname<>;
int port;
opaque vols<>;
} ;
struct gd1_mgmt_friend_rsp {
unsigned char uuid[16];
string hostname<>;
int op_ret;
int op_errno;
int port;
} ;
struct gd1_mgmt_unfriend_req {
unsigned char uuid[16];
string hostname<>;
int port;
} ;
struct gd1_mgmt_unfriend_rsp {
unsigned char uuid[16];
string hostname<>;
int op_ret;
int op_errno;
int port;
} ;
struct gd1_mgmt_cluster_lock_req {
unsigned char uuid[16];
} ;
struct gd1_mgmt_cluster_lock_rsp {
unsigned char uuid[16];
int op_ret;
int op_errno;
} ;
struct gd1_mgmt_cluster_unlock_req {
unsigned char uuid[16];
} ;
struct gd1_mgmt_cluster_unlock_rsp {
unsigned char uuid[16];
int op_ret;
int op_errno;
} ;
struct gd1_mgmt_stage_op_req {
unsigned char uuid[16];
int op;
opaque buf<>;
} ;
struct gd1_mgmt_stage_op_rsp {
unsigned char uuid[16];
int op;
int op_ret;
int op_errno;
string op_errstr<>;
opaque dict<>;
} ;
struct gd1_mgmt_commit_op_req {
unsigned char uuid[16];
int op;
opaque buf<>;
} ;
struct gd1_mgmt_commit_op_rsp {
unsigned char uuid[16];
int op;
int op_ret;
int op_errno;
opaque dict<>;
string op_errstr<>;
} ;
struct gd1_mgmt_friend_update {
unsigned char uuid[16];
opaque friends<>;
int port;
} ;
struct gd1_mgmt_friend_update_rsp {
unsigned char uuid[16];
int op;
int op_ret;
int op_errno;
} ;
struct gd1_mgmt_brick_op_req {
string name<>;
int op;
opaque input<>;
} ;
struct gd1_mgmt_brick_op_rsp {
int op_ret;
int op_errno;
opaque output<>;
string op_errstr<>;
} ;
struct gd1_mgmt_v3_lock_req {
unsigned char uuid[16];
unsigned char txn_id[16];
int op;
opaque dict<>;
} ;
struct gd1_mgmt_v3_lock_rsp {
unsigned char uuid[16];
unsigned char txn_id[16];
opaque dict<>;
int op_ret;
int op_errno;
} ;
struct gd1_mgmt_v3_pre_val_req {
unsigned char uuid[16];
int op;
opaque dict<>;
} ;
struct gd1_mgmt_v3_pre_val_rsp {
unsigned char uuid[16];
int op;
int op_ret;
int op_errno;
string op_errstr<>;
opaque dict<>;
} ;
struct gd1_mgmt_v3_brick_op_req {
unsigned char uuid[16];
int op;
opaque dict<>;
} ;
struct gd1_mgmt_v3_brick_op_rsp {
unsigned char uuid[16];
int op;
int op_ret;
int op_errno;
string op_errstr<>;
opaque dict<>;
} ;
struct gd1_mgmt_v3_commit_req {
unsigned char uuid[16];
int op;
opaque dict<>;
} ;
struct gd1_mgmt_v3_commit_rsp {
unsigned char uuid[16];
int op;
int op_ret;
int op_errno;
opaque dict<>;
string op_errstr<>;
} ;
struct gd1_mgmt_v3_post_val_req {
unsigned char uuid[16];
int op;
int op_ret;
opaque dict<>;
} ;
struct gd1_mgmt_v3_post_val_rsp {
unsigned char uuid[16];
int op;
int op_ret;
int op_errno;
string op_errstr<>;
opaque dict<>;
} ;
struct gd1_mgmt_v3_unlock_req {
unsigned char uuid[16];
unsigned char txn_id[16];
int op;
opaque dict<>;
} ;
struct gd1_mgmt_v3_unlock_rsp {
unsigned char uuid[16];
unsigned char txn_id[16];
opaque dict<>;
int op_ret;
int op_errno;
} ;
|