is it possible to parse an incoming google protocol buffers datagram without any .proto file? I merely now its been serialized using protocol buffers but have no idea about
protoc --decode_raw < my_file
You need to take the following things into account when inspecting the output:
If you want to decode the messages programmatically, you can write your own .proto file after you have figured out what the fields mean using the above method.