This is an automated email from the git hooks/post-receive script.
git pushed a commit to reference refs/pull/36/head
in repository terminology.
View the commit online.
commit 43f4ec2a6f615b4c37cbd267d8b4efeb4d4e264a
Author: [email protected] <[email protected]>
AuthorDate: Sun Mar 22 13:08:20 2026 -0600
fix: add backlog message types to tymux proxy enum
Add BACKLOG_BUF_REQ and BACKLOG_BUF to the proxy's local message
type enum and handle them as explicit no-ops in the message switch.
The proxy does not use backlog buffers but must recognize the types.
---
src/bin/tymux.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/src/bin/tymux.c b/src/bin/tymux.c
index 5b27a539..0040b137 100644
--- a/src/bin/tymux.c
+++ b/src/bin/tymux.c
@@ -99,7 +99,9 @@ typedef enum {
_TSRV_MSG_NOTIFY = 6,
_TSRV_MSG_TITLE = 7,
_TSRV_MSG_BELL = 8,
- _TSRV_MSG_EXIT = 9,
+ _TSRV_MSG_EXIT = 9,
+ _TSRV_MSG_BACKLOG_BUF_REQ = 10,
+ _TSRV_MSG_BACKLOG_BUF = 11,
} _TsrvMsgType;
typedef struct {
@@ -1312,6 +1314,11 @@ cmd_attach(int argc, char **argv)
running = 0;
break;
+ case _TSRV_MSG_BACKLOG_BUF_REQ:
+ case _TSRV_MSG_BACKLOG_BUF:
+ /* Proxy does not handle backlog buffers */
+ break;
+
default:
/* Unknown or unexpected message — ignore */
break;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.