From 67232d9c95f24cfbd5c6699701fb726eaecce216 Mon Sep 17 00:00:00 2001 From: Jm Casler Date: Wed, 29 Dec 2021 09:12:10 -0800 Subject: [PATCH] Build tapback support into the meshpacket --- mesh.proto | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/mesh.proto b/mesh.proto index 5e9b452..232b26c 100644 --- a/mesh.proto +++ b/mesh.proto @@ -711,7 +711,19 @@ message MeshPacket { /* * Describe if this message is delayed */ - Delayed delayed = 15; + Delayed delayed = 15; + + /* + * If set, this message is intened to be a reply to a previously sent message with the defined id. + */ + fixed32 reply_id = 16; + + /* + * Defaults to false. If true, then what is in the payload should be treated as an emoji like giving + * a message a heart or poop emoji. + */ + bool is_tapback = 17; + } /*