1config BR2_PACKAGE_LIBHTTPPARSER 2 bool "libhttpparser" 3 depends on !BR2_STATIC_LIBS 4 help 5 This is a parser for HTTP messages written in C. It 6 parses both requests and responses. The parser is 7 designed to be used in performance HTTP applications. 8 It does not make any syscalls nor allocations, it does 9 not buffer data, it can be interrupted at anytime. 10 Depending on your architecture, it only requires about 11 40 bytes of data per message stream (in a web server 12 that is per connection). 13 14 https://github.com/nodejs/http-parser 15 16comment "libhttpparser needs a toolchain w/ dynamic library" 17 depends on BR2_STATIC_LIBS 18