mirror of
https://github.com/logos-messaging/nim-chat-poc.git
synced 2026-01-02 06:03:09 +00:00
17 lines
358 B
Protocol Buffer
17 lines
358 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package wap.envelope;
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// Payload Framing Messages
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
message WapEnvelopeV1 {
|
|
|
|
string conversation_hint = 1;
|
|
uint64 salt = 2;
|
|
|
|
bytes payload = 5;
|
|
}
|