diff options
author | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-08-09 18:23:08 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-08-09 18:23:08 +0200 |
commit | e71ff9dc18c0e4d0cd63f0c168e64205af4ccb5a (patch) | |
tree | fe8bd54c191959f7a32e0d54a6eefa5413190c18 /sys/src/cmd/mothra/html.h | |
parent | 4c272d44c50c4ed947b93f66e2684747c72ddec4 (diff) |
mothra: log post data with debug flag, increase max token length from 1K to 4K
Diffstat (limited to 'sys/src/cmd/mothra/html.h')
-rw-r--r-- | sys/src/cmd/mothra/html.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/mothra/html.h b/sys/src/cmd/mothra/html.h index 0e3d1a8ea..0988a7e80 100644 --- a/sys/src/cmd/mothra/html.h +++ b/sys/src/cmd/mothra/html.h @@ -4,7 +4,7 @@ #define NSTACK 100 /* html grammar is not recursive, so 30 or so should do */ #define NHBUF 8192 /* Input buffer size */ #define NPEEKC 3 /* Maximum lookahead */ -#define NTOKEN 1024 /* Maximum token length */ +#define NTOKEN 4096 /* Maximum token length */ #define NATTR 512 /* Maximum number of attributes of a tag */ typedef struct Pair Pair; typedef struct Tag Tag; |