Dissect request/response of protobuf service method without gRPC
Hi,
We implement a protobuf generic service, the service name and method name can be dissected, and how to get the request/response message type in a Lua dissector? In gRPC, it seems to use grpc_message_type
to auto-detected the message type as a syntax of application/grpc,/helloworld.Greeter/SayHello,request
, how can I reuse this feature to parse my request and response parts?
Thanks.