diff options
author | June McEnroe <june@causal.agency> | 2020-02-25 17:25:12 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-25 17:26:57 -0500 |
commit | 34ac9ab3027ad017a4335198f168a03064289241 (patch) | |
tree | 21902e1fabe8fd615ed01844b30735c562eb0f42 /bounce.h | |
parent | Remove bad assert (diff) | |
download | pounce-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 '')
-rw-r--r-- | bounce.h | 2 |
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; |