chat_proto/proto/wap/envelope.proto

17 lines
358 B
Protocol Buffer
Raw Normal View History

2025-07-03 14:04:13 -07:00
syntax = "proto3";
2025-07-11 13:49:33 -07:00
package wap.envelope;
2025-07-03 14:04:13 -07:00
///////////////////////////////////////////////////////////////////////////////
// Payload Framing Messages
///////////////////////////////////////////////////////////////////////////////
2025-07-10 18:14:16 -07:00
message WapEnvelopeV1 {
2025-07-03 14:04:13 -07:00
string conversation_hint = 1;
uint64 salt = 2;
bytes payload = 5;
2025-07-04 13:36:36 -07:00
}