iamandi / nanopb

Automatically exported from code.google.com/p/nanopb
zlib License
0 stars 0 forks source link

repeated extensions support #127

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.repeated extension is not supported

What is the expected output? What do you see instead?
message LldpPort {
    optional string port_id = 1;
    optional string port_description = 2;
}
message StatsSample {
    optional uint32 sample_period_in_seconds = 1;
    extensions 100 to 1000;
}
extend StatsSample {
   optional string system_description = 101;
   repeated LldpPort port = 102;
}

Need a support for the above repeated field in extend.

What version of the product are you using? On what operating system?
nanopb-0.2.8

Please provide any additional information below.

Original issue reported on code.google.com by k.prasee...@gmail.com on 21 Jul 2014 at 11:29

GoogleCodeExporter commented 9 years ago

Original comment by Petteri.Aimonen on 4 Aug 2014 at 6:59