aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gluster.h
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-09-19 13:04:37 +0000
committerEvan Huus <eapache@gmail.com>2013-09-19 13:04:37 +0000
commit27c4a47c29cf64eb1049d758b5ecbe86f2ddd9d6 (patch)
treec9503b129c32e2dd2095e412fbf299a1ec5f443f /epan/dissectors/packet-gluster.h
parent6c41404ecf17b0eafe45411ff3966523c790798f (diff)
Enum was used after all. Restore it and namespace it with GLUSTER_ to avoid the
collision. svn path=/trunk/; revision=52144
Diffstat (limited to 'epan/dissectors/packet-gluster.h')
-rw-r--r--epan/dissectors/packet-gluster.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/epan/dissectors/packet-gluster.h b/epan/dissectors/packet-gluster.h
index b89f6dcd21..c147f41cd4 100644
--- a/epan/dissectors/packet-gluster.h
+++ b/epan/dissectors/packet-gluster.h
@@ -357,6 +357,20 @@ enum gf_fop_procnum {
GFS3_OP_MAXVALUE
};
+/* dir-entry types from libglusterfs/src/compat.h */
+enum gluster_entry_types {
+ GLUSTER_DT_UNKNOWN = 0,
+ GLUSTER_DT_FIFO = 1,
+ GLUSTER_DT_CHR = 2,
+ GLUSTER_DT_DIR = 4,
+ GLUSTER_DT_BLK = 6,
+ GLUSTER_DT_REG = 8,
+ GLUSTER_DT_LNK = 10,
+ GLUSTER_DT_SOCK = 12,
+ GLUSTER_DT_WHT = 14
+};
+
+
/* LOCKING operators come from libglusterfs/src/glusterfs.h */
/* based on original enum glusterfs_lk_cmds_t */