Hi Tennage,
Thanks for your interest in the onet framework. Can you explain a little bit more what you’re trying to achieve? Are you currently working in the DEDIS lab?
RawSend should only be used for short messages that don’t need any answer. If you need an answer, you should write a protocol.
With regard to your question 2., you ran into a restriction of protobuf, and the way it is implemented in dedis/protobuf. The problem comes from the `map[int][]*WitnessedMessage`. Protobuf only supports `map[x][]byte` and map[x]string`. So you
have to put the `[]*WitnessedMessage` in its own structure, and it should work.
Best,