diff options
author | Amar Tumballi <amarts@redhat.com> | 2017-12-19 16:10:11 +0530 |
---|---|---|
committer | Amar Tumballi <amarts@redhat.com> | 2017-12-27 05:20:30 +0000 |
commit | b868d6077c14e3653fdaddcb856ab2bf6ceb9c00 (patch) | |
tree | 201f61db8690929aa967808816b49d1d4280c385 /rpc/xdr/src/glusterfs-fops.x | |
parent | 9a47978877a5415dbbac94b93b4b30d055349681 (diff) |
dict: support better on-wire transfer
This patch brings data type awareness to dictionary,
and also makes sure valid data is properly sent to the
other side of the wire using XDR.
Next step is to allow people to add more data types
(for example, Bool, UUID, iatt etc), and then make
it part of every fop signature in wire.
Fixes #203
Change-Id: Ie0eee2db847bea2bf7dad80dec89ce3e7c5917c1
Signed-off-by: Amar Tumballi <amarts@redhat.com>
Diffstat (limited to 'rpc/xdr/src/glusterfs-fops.x')
-rw-r--r-- | rpc/xdr/src/glusterfs-fops.x | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/rpc/xdr/src/glusterfs-fops.x b/rpc/xdr/src/glusterfs-fops.x index 5b5c5904678..44e5d9191a2 100644 --- a/rpc/xdr/src/glusterfs-fops.x +++ b/rpc/xdr/src/glusterfs-fops.x @@ -231,3 +231,13 @@ enum gf_upcall_flags_t { GF_UPCALL_LEASE_RECALL, GF_UPCALL_FLAGS_MAXVALUE }; + +enum gf_dict_data_type_t { + GF_DATA_TYPE_UNKNOWN, + GF_DATA_TYPE_INT, + GF_DATA_TYPE_UINT, + GF_DATA_TYPE_DOUBLE, + GF_DATA_TYPE_STR, + GF_DATA_TYPE_PTR, + GF_DATA_TYPE_MAX +}; |