Cool !
- The rootfield is different between the request and response. Is there any way to have Unsniff use a different root field for the response vs the request? Perhaps using two different protocols?
Can you use a wrapper , so we have only one root field ?
We use protobuf in one of our products and that is what we do. A sample
| Code: |
message TRPMessage
{
optional HelloRequest=1,
optional HelloResponse=2,
optional CounterGroupInfoRequest=3,
optional CounterGroupInfoResponse=4,
..
..
}
|
Thanks,
Vivek