Add warning about messageIDs

See https://github.com/libp2p/specs/pull/285 and https://github.com/libp2p/go-libp2p-pubsub/issues/361
This commit is contained in:
Rüdiger Klaehn 2020-07-24 22:44:32 +02:00 committed by David Dias
parent 99507107b6
commit 4ccb63821e

View File

@ -32,10 +32,12 @@ message ControlMessage {
message ControlIHave {
optional string topicID = 1;
// implementors from other languages should use bytes here - go protobuf emits invalid utf8 strings
repeated string messageIDs = 2;
}
message ControlIWant {
// implementors from other languages should use bytes here - go protobuf emits invalid utf8 strings
repeated string messageIDs = 1;
}