diff --git a/meshtastic/mesh.proto b/meshtastic/mesh.proto index f3406e4..098f19f 100644 --- a/meshtastic/mesh.proto +++ b/meshtastic/mesh.proto @@ -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; } -} \ No newline at end of file +}