Skip to content

Commit b2c0ee3

Browse files
committed
Tarantool binary protocol support
Added Tarantool binary protocol parsing (IPROTO). Protocol info From IANA database: Service Name: tarantool Port Number: 3301 Transport Protocol: tcp/udp Description: Tarantool in-memory computing platform
1 parent baee15d commit b2c0ee3

15 files changed

+9183
-0
lines changed

CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1030,6 +1030,8 @@ set(NETDISSECT_SOURCE_LIST_C
10301030
ipproto.c
10311031
l2vpn.c
10321032
machdep.c
1033+
msgpuck.c
1034+
msgpuck_hints.c
10331035
netdissect.c
10341036
netdissect-alloc.c
10351037
nlpid.c
@@ -1174,6 +1176,7 @@ set(NETDISSECT_SOURCE_LIST_C
11741176
print-sunrpc.c
11751177
print-symantec.c
11761178
print-syslog.c
1179+
print-tarantool.c
11771180
print-tcp.c
11781181
print-telnet.c
11791182
print-tftp.c

Makefile.in

+4
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ LIBNETDISSECT_SRC=\
8585
ipproto.c \
8686
l2vpn.c \
8787
machdep.c \
88+
msgpuck.c \
89+
msgpuck_hints.c \
8890
netdissect.c \
8991
netdissect-alloc.c \
9092
nlpid.c \
@@ -229,6 +231,7 @@ LIBNETDISSECT_SRC=\
229231
print-sunrpc.c \
230232
print-symantec.c \
231233
print-syslog.c \
234+
print-tarantool.c \
232235
print-tcp.c \
233236
print-telnet.c \
234237
print-tftp.c \
@@ -295,6 +298,7 @@ HDR = \
295298
machdep.h \
296299
mib.h \
297300
mpls.h \
301+
msgpuck.h \
298302
nameser.h \
299303
netdissect.h \
300304
netdissect-alloc.h \

0 commit comments

Comments
 (0)