Say I've got a message proto defined as below:
message Msg{
optional int32 a;
optional string b;
optional bytes payload;
...
}and got a bunch of bytes [0x.......] parsed as type Msg. I may get all fields contents from Msg object but I'd just want to project the index:length in original bytes which correlating to specified fields(payload field say). What I'm supposed to do achieving this? -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/c2dd365d-cc05-491b-afaa-991439bdbf2e%40googlegroups.com.
