summaryrefslogtreecommitdiff
path: root/src/leap/common/ipc/notification.proto
blob: 4ae0406d8e81ea6f1050de11663739a5a8e3b2f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// https://developers.google.com/protocol-buffers/docs/pythontutorial
// https://developers.google.com/protocol-buffers/docs/reference/python-generated

package leap.common;

message Notification {

  enum Component {
    client = 0;
    soledad = 1;
    eip = 2;
    smtp_relay = 3;
    mx = 4;
  }

  required int32 id = 1;
  required Component component = 2;
  required string content = 3;
  required string mac_method = 4;
  required bytes mac = 5;
  optional string enc_method = 6;
  optional bool error_occurred = 7;
}