From 34ac9ab3027ad017a4335198f168a03064289241 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Tue, 25 Feb 2020 17:25:12 -0500 Subject: Bump buffer sizes to allow for tags I still think this limit is unreasonably large in comparison to 512 for the actual message. --- bounce.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bounce.h') diff --git a/bounce.h b/bounce.h index 20d7d40..f95bdc8 100644 --- a/bounce.h +++ b/bounce.h @@ -39,6 +39,8 @@ typedef unsigned char byte; +enum { MessageCap = 8191 + 512 }; + enum { ParamCap = 15 }; struct Message { char *origin; -- cgit 1.4.1