Merge pull request #512 from meshtastic/repeated-oneof

(maybe?) fix repeated oneof
pull/513/head
Thomas Göttgens 2024-06-04 15:19:27 +02:00 zatwierdzone przez GitHub
commit e322b716df
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 9 dodań i 2 usunięć

Wyświetl plik

@ -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;
}
}
}