blob: b01d282f3683396ae96f2cf7adb3039508a334d8 (
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
|
/*
* Copyright (c) 2012 Red Hat, Inc. <http://www.redhat.com>
* This file is part of GlusterFS.
*
* This file is licensed to you under your choice of the GNU Lesser
* General Public License, version 3 or any later version (LGPLv3 or
* later), or the GNU General Public License, version 2 (GPLv2), in all
* cases as published by the Free Software Foundation.
*/
#ifdef RPC_XDR
%#include "rpc-pragmas.h"
#endif
%#include "compat.h"
/* This file has definition of few XDR structures which are
* not captured in any section specific file */
%#include "xdr-common.h"
%#include "glusterfs-fops.h"
struct auth_glusterfs_parms_v2 {
int pid;
unsigned int uid;
unsigned int gid;
unsigned int groups<>;
opaque lk_owner<>;
};
struct auth_glusterfs_parms {
u_quad_t lk_owner;
unsigned int pid;
unsigned int uid;
unsigned int gid;
unsigned int ngrps;
unsigned groups[16];
};
struct gf_dump_req {
u_quad_t gfs_id;
};
struct gf_statedump {
unsigned int pid;
};
struct gf_prog_detail {
string progname<>;
u_quad_t prognum;
u_quad_t progver;
struct gf_prog_detail *next;
};
struct gf_dump_rsp {
u_quad_t gfs_id;
int op_ret;
int op_errno;
struct gf_prog_detail *prog;
};
struct gf_common_rsp {
int op_ret;
int op_errno;
opaque xdata<>; /* Extra data */
} ;
|