Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the lua dissector to work with the latest changes #1580

Merged
merged 1 commit into from
May 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions tools/service-protocol-wireshark-dissector/dissector.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ local p_service_protocol = Proto("restate_service_protocol", "Restate Service En

-- Define the fields
local f_ty = ProtoField.uint16("restate_service_protocol.message_type", "Message Type", base.HEX)
local f_protocol_version = ProtoField.uint16("restate_service_protocol.protocol_version", "Protocol version")
local f_completed = ProtoField.bool("restate_service_protocol.completed", "COMPLETED", base.NONE, {
"Completed",
"Not completed"
Expand All @@ -30,7 +29,6 @@ local f_message = ProtoField.string("restate_service_protocol.message", "Message

p_service_protocol.fields = {
f_ty,
f_protocol_version,
f_completed,
f_requires_ack,
f_len,
Expand Down Expand Up @@ -68,5 +66,5 @@ end
local media_types = DissectorTable.get("media_type")
local streaming_media_types = DissectorTable.get("streaming_content_type")

media_types:add("application/restate", p_service_protocol)
streaming_media_types:add("application/restate", p_service_protocol)
media_types:add("application/vnd.restate.invocation.v1", p_service_protocol)
streaming_media_types:add("application/vnd.restate.invocation.v1", p_service_protocol)
Loading