Merge pull request #512 from meshtastic/repeated-oneof

(maybe?) fix repeated oneof
This commit is contained in:
Thomas Göttgens 2024-06-04 15:19:27 +02:00 committed by GitHub
commit e322b716df
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1656,6 +1656,13 @@ message ChunkedPayload {
bytes payload_chunk = 4;
}
/*
* Wrapper message for broken repeated oneof support
*/
message resend_chunks {
repeated uint32 chunks = 1;
}
/*
* Responses to a ChunkedPayload request
*/
@ -1678,6 +1685,6 @@ message ChunkedPayloadResponse {
/*
* Request missing indexes in the chunked payload
*/
repeated uint32 resend_chunks = 4;
resend_chunks resend_chunks = 4;
}
}
}