Skeleton dissector for Apache Kafka's new protocol:

https://cwiki.apache.org/confluence/display/KAFKA/A+Guide+To+The+Kafka+Protocol

All the core request/response matching necessary to actually decode is done, and
helpers exist for the common Kafka data types. Now it just remains to fill in
the rest of the fields.

svn path=/trunk/; revision=50777
This commit is contained in:
Evan Huus 2013-07-22 00:08:25 +00:00
parent d43eaa76cc
commit fb6c9c3387
3 changed files with 3 additions and 0 deletions

View File

@ -817,6 +817,7 @@ set(DISSECTOR_SRC
dissectors/packet-jxta.c
dissectors/packet-k12.c
dissectors/packet-kadm5.c
dissectors/packet-kafka.c
dissectors/packet-kdp.c
dissectors/packet-kdsp.c
dissectors/packet-kerberos.c

View File

@ -744,6 +744,7 @@ DISSECTOR_SRC = \
packet-jxta.c \
packet-k12.c \
packet-kadm5.c \
packet-kafka.c \
packet-kdp.c \
packet-kdsp.c \
packet-kerberos.c \

View File

@ -0,0 +1 @@
/home/eapache/Dropbox/Documents/Wireshark/Kafka/packet-kafka.c