__init__.py 414 B

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