[protobuf] allow_alias true

2021-09-27 Thread hy kam
Hi, I got proto file from other team but they defined as below enum Aaa{ *option allow_alias = true;* MAX_NUMBER = 400; } and I got error during compile *"ppp.proto:17:1: "Constants" declares support for enum aliases but no enum values share field numbers. Please remove the unnecessary 'op

[protobuf] Python fails to parse protobuf structure in http body

2021-09-27 Thread Irad K
Hi, I wonder if anybody can help me out with a Protobuf parsing issue I'm currently facing. So I've implemented the following protobuf based protocol message singleConfig { string configName = 1; string configValue = 2; } message currentConfig { repeated singleConfig conf = 1; } me