aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ctdb.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2007-06-04 07:35:05 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2007-06-04 07:35:05 +0000
commita17d4a117b79cdd494e21ae54cc8ac3396704905 (patch)
treeedf8bfa76d0f43ef24fbb0db0a040599148af21c /epan/dissectors/packet-ctdb.c
parentc2456b8f4ab5727feea58a556b594d5d0fc09a97 (diff)
downloadwireshark-a17d4a117b79cdd494e21ae54cc8ac3396704905.tar.gz
wireshark-a17d4a117b79cdd494e21ae54cc8ac3396704905.tar.bz2
wireshark-a17d4a117b79cdd494e21ae54cc8ac3396704905.zip
add the name for the keeaplive pdu
svn path=/trunk/; revision=22035
Diffstat (limited to 'epan/dissectors/packet-ctdb.c')
-rw-r--r--epan/dissectors/packet-ctdb.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ctdb.c b/epan/dissectors/packet-ctdb.c
index 139351f7ba..903b93eb4f 100644
--- a/epan/dissectors/packet-ctdb.c
+++ b/epan/dissectors/packet-ctdb.c
@@ -90,8 +90,9 @@ typedef struct _ctdb_trans_t {
#define CTDB_REPLY_DMASTER 3
#define CTDB_REPLY_ERROR 4
#define CTDB_REQ_MESSAGE 5
-#define CTDB_REQ_CONTROL 6
-#define CTDB_REPLY_CONTROL 7
+#define CTDB_REQ_CONTROL 7
+#define CTDB_REPLY_CONTROL 8
+#define CTDB_REQ_KEEPALIVE 9
static const value_string ctdb_opcodes[] = {
{CTDB_REQ_CALL, "CTDB_REQ_CALL"},
{CTDB_REPLY_CALL, "CTDB_REPLY_CALL"},
@@ -101,6 +102,7 @@ static const value_string ctdb_opcodes[] = {
{CTDB_REQ_MESSAGE, "CTDB_REQ_MESSAGE"},
{CTDB_REQ_CONTROL, "CTDB_REQ_CONTROL"},
{CTDB_REPLY_CONTROL, "CTDB_REPLY_CONTROL"},
+ {CTDB_REQ_KEEPALIVE, "CTDB_REQ_KEEPALIVE"},
{0,NULL}
};