Add generic detail payload variant to TAKPacket

This commit is contained in:
Ben Meadors 2024-09-15 19:24:15 -05:00
parent 0acaec6eff
commit 84a60f4e62
2 changed files with 7 additions and 0 deletions

View file

@ -5,3 +5,4 @@
*GeoChat.message max_size:200
*GeoChat.to max_size:120
*GeoChat.to_callsign max_size:120
*TAKPacket.detail max_size:220

View file

@ -40,6 +40,12 @@ message TAKPacket {
* ATAK GeoChat message
*/
GeoChat chat = 6;
/*
* Generic CoT detail XML
* May be compressed / truncated by the sender
*/
bytes detail = 7;
}
}