[protobuf] Reflecting Custom Options in Protobuf C#

2016-04-28 Thread TravG
I'm using Protobufs in C# and wondering how I can get access to custom options I've annotated on a field at runtime via reflection. I see some indications that this should be possible: Option type defined in public API:

[protobuf] Protobuf on ARM pads integers

2016-04-28 Thread Brian Savage
I'm using an ARM Cortex A9 running Ubuntu Linux. My application uses protobufs. I have successfully implemented much of my interface, but there are a couple of messages that have an integer that is getting padded. For example, if send decimal 50 (0x32), when it's parsed from the

[protobuf] Where is jspb.Message provided?

2016-04-28 Thread Jeffrey Getzin
Hi there, Experimenting with Protobuffers again after being out of Google for a few years. I've been generating C# code for my proto buffer definition files with no problem; the problem is when I generate the JavaScript files. Each generated JavaScript file has the Closure dependency:

[protobuf] Integers are being padded in protobufs on ARM

2016-04-28 Thread Brian Savage
I am using protobufs on an ARM processor running Ubuntu Linux. Everything seems to be working, except some integers are being padded with an extra byte in LSW. Take for example the raw message 0x10 0x01 0x48 0x32 I'm passing an unsigned integer with a value of 50 decimal (0x32). Printing