about summary refs log tree commit diff
path: root/bounce.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-25 17:25:12 -0500
committerJune McEnroe <june@causal.agency>2020-02-25 17:26:57 -0500
commit34ac9ab3027ad017a4335198f168a03064289241 (patch)
tree21902e1fabe8fd615ed01844b30735c562eb0f42 /bounce.h
parentRemove bad assert (diff)
downloadpounce-34ac9ab3027ad017a4335198f168a03064289241.tar.gz
pounce-34ac9ab3027ad017a4335198f168a03064289241.zip
Bump buffer sizes to allow for tags
I still think this limit is unreasonably large in comparison to 512 for
the actual message.
Diffstat (limited to 'bounce.h')
-rw-r--r--bounce.h2
1 files changed, 2 insertions, 0 deletions
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;