syntax = "proto3"; package palmdef.encrypted_tunnel; /* 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 }