23 lines
786 B
Protocol Buffer
23 lines
786 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
/*
|
||
|
This file contains message definitions for packets sent via encrypted tunneling.
|
||
|
These packets have the directions EI2R and ER2I (encrypted initiator to receiver, encrypted receiver to initiator).
|
||
|
|
||
|
|
||
|
These packets are assigned the ID block 0x70-0x8f.
|
||
|
*/
|
||
|
|
||
|
// Sent by the initiator to send arbitrary encrypted data to the receiver
|
||
|
message PalmEI2RRelayDataPacket {
|
||
|
enum packet_info { unknown = 0; type = 0x70; }
|
||
|
|
||
|
bytes data = 3; // The arbitrary data sent to the other party
|
||
|
}
|
||
|
|
||
|
// Sent by the receiver to send arbitrary encrypted data to the initiator
|
||
|
message PalmER2IRelayDataPacket {
|
||
|
enum packet_info { unknown = 0; type = 0x71; }
|
||
|
|
||
|
bytes data = 3; // The arbitrary data sent to the other party
|
||
|
}
|