cottak 0.1.1

A built in test application for Linux using dynamic libraries in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
syntax = "proto3";
option optimize_for = LITE_RUNTIME;

import "cotevent.proto";
import "takcontrol.proto";

package atakmap.commoncommo.protobuf.v1;

// Top level message sent for TAK Messaging Protocol Version 1.
message TakMessage {
    // Optional - if omitted, continue using last reported control
    // information
    TakControl takControl = 1;

    // Optional - if omitted, no event data in this message
    CotEvent cotEvent = 2;
}