blob: 9947099a0d3196f2ba55c2823b5b5984bf92bc0c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
from devtools.yamaker.project import NixProject
http_parser = NixProject(
owners=["g:mds", "g:cpp-contrib"],
arcdir="contrib/restricted/http-parser",
nixattr="http-parser",
# By default maximium header size allowed is 80Kb. To remove the effective limit
# on the size of the header, we define the macro to a very large number (0x7fffffff).
cflags=["-DHTTP_MAX_HEADER_SIZE=0x7fffffff"],
)
|