I have some arbitrary Google Protocol Buffers message as a byte string that I have no descriptor for. How can I iterate throughout it's fields and check their values? It's fine if they would be represented as just some general bytes arrays without names.
I digged all over the google, stackoverflow and original reference for Protocol Buffers with no use. Reflection module for Python does not help as well and can't actually reflect insides of arbitrary message.
Again: I have no any descriptor for my message at all, still need to list it's fields, so this does not answer.